Team Number Adewale Adeniran, Thomas Cuttino, Brian Lane Paper Submitted to the 2003 Mathematics Competition in Modeling

Size: px
Start display at page:

Download "Team Number Adewale Adeniran, Thomas Cuttino, Brian Lane Paper Submitted to the 2003 Mathematics Competition in Modeling"

Transcription

1 Team Number Adewale Adeniran, Thomas Cuttino, Brian Lane Paper Submitted to the 2003 Mathematics Competition in Modeling

2 Team Number Introduction: Gamma Knife Treatment Plan Stereotactic Radiosurgery is the latest way of fighting cancer. Ionizing radiation is applied to a well-defined tumor without delivering any amount of radiation to the surrounding tissue. The three common modalities used in Stereotactic Radiosurgery are: the gamma knife unit, heavy charged particle beams, and external high- energy photon beams from linear accelerators. The gamma knife unit delivers its dose using 201 cobalt-60 unit sources through a heavy helmet. All 201 beams simultaneously intersect, resulting in a spherical dose distribution. 4 inter-changeable collimator helmets with beam channel diameters of 4, 8, 14, and 18 are available for use. The most common tumors normally take between 1 and 15 shots or doses. The target area is a bounded three-dimensional digital image with millions of points. The goal of radio-surgery is to deplete the tumor cells while still preserving the normal structures of the brain. A treatment plan is needed that can limit the variance of biological uncertainties and physical limitations. The basic goals are to minimize the number of hotspots caused by overlapping, match specified isodose contours with the tumor, prohibit shots from damaging tissue outside of the tumor or touching each other which would cause hot-spots that would damage more tissue, treat a minimum of 90% of the tumor, all while using the fewest shots possible. The Problem: The problem at hand is that of the gamma knife treatment planning in which we are assigned to model a situation in which 201 cobal-60 unit sources target a spherical region within the brain of a patient diagnosed with a tumor. The available sizes of radiation doses are as follows: 4mm diameter, 8mm diameter, 14mm diameter, and 18mm diameter. The main objective of our modeling is to formulate a series of shots in which no two shots overlap so as to cause a hot-spot in the brain, and the damage outside of the cancerous region is minimized, while obtaining a minimum of 90% destruction of cancerous regions. The final requirement is to use the least possible number of shots, which is 1 to 15 for normal tumors. Assumptions We assume that the tumor has grown equally in all directions, and is thus roughly spherical ( We assume that the smallest tumor we will be working with is 2 mm in diameter (since the minimum number of shots required is 1), giving us a minimum volume of mm 3. We assume the most efficient method of packing spheres to be that of a face-centered cubic lattice, as described by Hales. We assume that we are able to hit the tumor in the center since the image of the tumor is radiographically well-defined.

3 Team Number We assume the tumor is completely surrounded by the brain, since it is intracranial. Algorithm development: We began developing our treatment plan by setting our goals. Our primary goal was to irradiate as much of the tumor as possible. Consequently, we set out to minimize the amount of empty space between the spherical shots of radiation. Our research indicated that a face-centered cubic lattice (see Appendix 2) has been proven to be the most efficient way of packing spheres, as proved by Hales. We determined that it would be best to begin setting up the lattice in the center of the tumor and then working the pattern outward. Having our dosage structure and process determined, we set out to calculate the nonirradiated volume left over by each shot, µ. We attempted to calculate µ by drawing each shot inscribed in a cube. This, however, created overlap as the shots protruded into their neighbor s cubes. We next determined that inscribing each shot in a regular rhombic dodecahedron might be a better option. This, also, proved to be too complicated as we tried to create the face-centered cubic lattice. After much frustration with all our attempts to work from the center of the tumor outward, we decided to work from the outside in. We visualized destroying the tumor by removing layers at a time, somewhat like peeling away the layers of an onion. After one layer had been taken away, we could then approximate the remaining tumor as another sphere, and repeat the process of removing the outmost layer. Fleshing the process out in flowcharts for implementation in a FORTRAN program, we decided the algorithm would involve the user putting in the tumor s radius, calculate the tumor s volume, and then determine how many shots it would take for spheres of each of the four radii to take out the first layer of the tumor. Our next task became determining how many shots would fit into the first layer of the sphere. To determine this, we consider that the centers of the shot spheres create an inner sphere (illustrated in Figure ). This inner sphere is of radius R r, where R is the tumor s radius and r is the radius of the shots, and has a surface area of 4π(R-r) 2. Each shot intersects this surface area, cutting out a shape of area A. We found this area by integrating, but first we needed to find our bounds of integration. As shown in Appendix 2, for each shot, the radius of the inner sphere subtends an angle 2θ, and θ = arctan(r/(r-r)). Thus, if we multiply our double integral by 4, our bounds of integration are 0<φ<arctan(r/(R-r)) and 0<θ<arctan(r/(R-r)). Thus our area A = r arctan R r 4 ( R r ) 2 sin( θ ) dθ dφ 0 r arctan R r 0

4 Team Number Evaluating this integral and using it to divide 4π(R-r) 2, we may determine the number of shots of radius r that will fit into the first layer of the tumor, N r = π ( R r ) 2 R 2 2 R r + 2 r 2 R 2 2 R r r 2 R 2 2 R r + 2 r R 2 R 2 2 R r + r 2 R 2 2 R r + r 2 R 2 2 R r + 2 r 2 2 R r + R 2 2 R r + r 2 R 2 2 R r + 2 r 2 r 2 arctan R 2 2 R r + r 2 r R r The program we designed would calculate this number for every radius (2, 4, 7, and 9), then calculate the volume of cancerous material that would be destroyed by each radius given the number of spheres. V r = N r (4/3 π r r^3) The program would then determine which radius destroyed the greatest amount of cancerous material and then select that shot size to be used to take out the first layer. The subsequent layers proved to be more problematic. In order to set up the lattice of shots, we had to determine the amount of overlap between one layer of spheres and another i.e., we could not simply add their radii together to determine what size of tumor we were now dealing with. We derived a formula that related the overlap, χ, to the radius of our first shot radius (illustrated in Appendix 2). This overlap χ = r/(tan(67.5) 2). Thus, our second layer of shots forms a sphere of radius R 1 2r 1 r 2 + χ (see Appendix 2), where R 1 is the original radius of the tumor, r 1 is the shot size used to destroy the first layer, and r 2 is the shot size used to destroy the second layer. Using the same process, the program calculates this radius and the number of shots that would be able to fit in the second layer, selecting the one radius that would destroy the greatest amount of cancerous material. Again, the program calculates the surface area of the inner sphere and divides this by the surface area intersected by each sphere, which this time is A = r2 arctan R1 2 r1 r2 + χ 4 ( R1 2 r1 r2 + χ) 2 sin( θ ) dθ dφ 0 r2 arctan R1 2 r1 r2 + χ 0

5 Team Number This gives us the number of spheres for each radius to be N r = π ( R1 2 r1 r2 + χ) 2 R R1 r1 + 2 R1 r2 2 R1 χ 4 r1 2 4 r1 r2 + 4 r1 χ r r2 χ χ 2 + R1 2 4 R1 r1 2 R1 r2 + 2 R1 χ + 4 r r1 r2 4 r1 χ + r2 2 2

6 Team Number r2 χ + χ 2 arctan r2 R1 2 r1 r2 + χ Had this model worked, it would have given us higher percentages of destroyed cancerous material. However, we abandoned this method for two reasons: first, due to the complexity of the above equation, errors were made in the FORTRAN code, and second, we made an error in our assumptions about the lattice structure (discussed below). Results and Conclusions. We conclude that the layering and latticing method was not completely successful. In taking out layers, the shots leave behind too many cells not irradiated, while the lattice structure does not fit exactly, leaving even more space not irradiated. We believe the concept of layering may be effective as a first strike against the tumor decimating a sizeable portion of it while leaving sparse amounts of cancerous material behind making way for more precise eradication of the remaining cancer cells. Error Analysis As shown on the graph of percentage irradiated versus radius of the tumor, the results from the iterations of our program were quite unexpectedly low. The best explanation for this anomaly is the presence of programming mistakes due to lack of experience and practice with FORTRAN. We were able to better these results slightly by correcting some of our more obvious programming mistakes. We had no time to correct the rest of them. Our second major error involved the creation of the lattice. We found that when we drew a picture of a sphere and tried to create a lattice within it, we were unable to line up the second row of spheres to touch the primary spheres and each other, also. Thus, it was impossible to achieve a true lattice configuration. Future Developments Had we had more time, we would have corrected whatever programming mistakes we had made. We would have liked to have built scale models to help us better visualize our problem and solution. We would have done deeper research into the dodecahedron model.

7 Team Number Alternate Situations This problem would have been much easier to solve had we had a cubic tumor. Since tumors tend to grow toward blood concentrations, it is possible in a few parts of the body for a cubic tumor to be developed. The problem would also have been easier had the doses been cubical or if partial doses were possible.

8 Team Number Variable Names 1. R dose - radius of dose. 2. R n - radius of sets of spheres 3. R p - radius of primary layer 4. Rmax- maximum radius of tumor 5. Vmax- maximum volume of tumor Appendix 1 6. V n - amount of volume destroyed for layer with radius n. 7. V dest - total volume destroyed 8. V 1 volume of tumor left to be destroyed(initial volume- any irradiated layers) 9. V I - initial volume of tumor 10. N n - number of shots 11. N- total number of shots. 12. S- lenrth of a side 13. χ- difference in lattice structure 14. Perd- Percent destroyed 15. W, X, Y- used to prepare calculations in program 16. µ - cells not irradiated left over by each shot Formulas 1. Volume of a sphere- 4/3 π r 3 2. Formula for calculating new perimeter = R1 - Rdose - sin (45 0 ) *Rprev. 3. Formula for volume of dodecahedron- 2 s 3.

9 Team Number X = π ( R1 Rdose ) 2 Rdose arctan R1 Rdose 5. W = R1 2 2 R1 Rdose + Rdose 2 6. Y = ( R1 Rdose ) 3 1 R1 2 2 R1 Rdose + 2 Rdose 2 7. N n = X/ (W+Y)

10 Team Number Appendix 2 Charts and Figures Tumor of radius Ri Shots of radius r Inner sphere created by centers of shots Surface area A created by intersection of shots and inner sphere

11 Team Number r θ Shot Inner sphere R-r r

12 Team Number New inner sphere of radius R1-2r1-r2+χ

13 Team Number Bibliography

UNC Charlotte Super Competition - Comprehensive test March 2, 2015

UNC Charlotte Super Competition - Comprehensive test March 2, 2015 March 2, 2015 1. triangle is inscribed in a semi-circle of radius r as shown in the figure: θ The area of the triangle is () r 2 sin 2θ () πr 2 sin θ () r sin θ cos θ () πr 2 /4 (E) πr 2 /2 2. triangle

More information

12/1/17 OUTLINE KEY POINTS ELEMENTS WITH UNSTABLE NUCLEI Radioisotopes and Nuclear Reactions 16.2 Biological Effects of Nuclear Radiation

12/1/17 OUTLINE KEY POINTS ELEMENTS WITH UNSTABLE NUCLEI Radioisotopes and Nuclear Reactions 16.2 Biological Effects of Nuclear Radiation OUTLINE 16.1 Radioisotopes and Nuclear Reactions 16.2 Biological Effects of Nuclear Radiation PET scan X-ray technology CT scan 2009 W.H. Freeman KEY POINTS Radioactivity is the consequence of an unstable

More information

Class 29: Reciprocal Space 3: Ewald sphere, Simple Cubic, FCC and BCC in Reciprocal Space

Class 29: Reciprocal Space 3: Ewald sphere, Simple Cubic, FCC and BCC in Reciprocal Space Class 29: Reciprocal Space 3: Ewald sphere, Simple Cubic, FCC and BCC in Reciprocal Space We have seen that diffraction occurs when, in reciprocal space, Let us now plot this information. Let us designate

More information

Integrals in cylindrical, spherical coordinates (Sect. 15.7)

Integrals in cylindrical, spherical coordinates (Sect. 15.7) Integrals in clindrical, spherical coordinates (Sect. 15.7 Integration in spherical coordinates. Review: Clindrical coordinates. Spherical coordinates in space. Triple integral in spherical coordinates.

More information

The Reciprocal Lattice

The Reciprocal Lattice 59-553 The Reciprocal Lattice 61 Because of the reciprocal nature of d spacings and θ from Bragg s Law, the pattern of the diffraction we observe can be related to the crystal lattice by a mathematical

More information

You have two samples of water each made up of different isotopes of hydrogen: one contains

You have two samples of water each made up of different isotopes of hydrogen: one contains Chapter 2 Nuclear Chemistry Concept Check 2. You have two samples of water each made up of different isotopes of hydrogen: one contains H2O and the other, H2O. a. Would you expect these two water samples

More information

HSC General Maths. Name: Tracey Hughes-Butters 2011 Mathtastic Learning GENERAL MATHEMATICS NOTES HSC ALGEBRAIC MODELLING 3

HSC General Maths. Name: Tracey Hughes-Butters 2011 Mathtastic Learning GENERAL MATHEMATICS NOTES HSC ALGEBRAIC MODELLING 3 Allgebraic Modelllling 3 Notes... HSC General Maths Name: Tracey Hughes-Butters 011 Mathtastic Learning 1 HSC CAPACITY MATRIX GENERAL MATHEMATICS TOPIC: Algebraic Modelling 3 & 4a Algebra skills & Linear

More information

Physics 114 Exam 1 Spring 2013

Physics 114 Exam 1 Spring 2013 Physics 114 Exam 1 Spring 2013 Name: For grading purposes (do not write here): Question 1. 1. 2. 2. 3. 3. Problem Answer each of the following questions and each of the problems. Points for each question

More information

AEPHY: Nuclear Physics Practise Test

AEPHY: Nuclear Physics Practise Test AEPHY: Nuclear Physics Practise Test Name: OVERALL: Additional 1 mark for units and significant figures. 1. Complete the table below: (2 marks) (63 marks + overall = 64 marks) Element Nuclide Atomic Number

More information

ACT. CERT - Grade 12 - MATHEMATICS TEST 1 60 Minutes 60 Questions DO FIGURING HERE GO ON TO NEXT PAGE

ACT. CERT - Grade 12 - MATHEMATICS TEST 1 60 Minutes 60 Questions DO FIGURING HERE GO ON TO NEXT PAGE DIRECTIONS: Solve each problem, choose the correct answer, and then fill in the corresponding oval on your answer sheet. Do not linger over problems that take too much time. Solve as many as you can; then

More information

We have seen how the Brems and Characteristic interactions work when electrons are accelerated by kilovolts and the electrons impact on the target

We have seen how the Brems and Characteristic interactions work when electrons are accelerated by kilovolts and the electrons impact on the target We have seen how the Brems and Characteristic interactions work when electrons are accelerated by kilovolts and the electrons impact on the target focal spot. This discussion will center over how x-ray

More information

Chemistry 801: Nanostructured Materials and Interfaces

Chemistry 801: Nanostructured Materials and Interfaces Chemistry 801: Nanostructured Materials and Interfaces Problem set 1: Answer key 1. For a perspective on surface-to-volume ratio, consider a sphere whose radius is 1 cm and determine its surface area and

More information

Sponsored by: UGA Math Department, UGA Math Club, UGA Parents and Families Association Written test, 25 problems / 90 minutes WITH SOLUTIONS

Sponsored by: UGA Math Department, UGA Math Club, UGA Parents and Families Association Written test, 25 problems / 90 minutes WITH SOLUTIONS Sponsored by: UGA Math Department, UGA Math Club, UGA Parents and Families Association Written test, 25 problems / 90 minutes WITH SOLUTIONS 1 Easy Problems Problem 1. On the picture below (not to scale,

More information

Massachusetts Institute of Technology Department of Physics. Physics Out: Friday 29 September 2006 Due: Friday 6 October 2006.

Massachusetts Institute of Technology Department of Physics. Physics Out: Friday 29 September 2006 Due: Friday 6 October 2006. Massachusetts Institute of Technology Department of Physics Physics 8.033 Out: Friday 29 September 2006 Due: Friday 6 October 2006 Problem Set 4 Due: Friday 6 October 2006 at 4:00PM. Please deposit the

More information

Carbon Dating The decay of radioactive nuclei can be used to measure the age of artifacts, fossils, and rocks. The half-life of C 14 is 5730 years.

Carbon Dating The decay of radioactive nuclei can be used to measure the age of artifacts, fossils, and rocks. The half-life of C 14 is 5730 years. Carbon Dating The decay of radioactive nuclei can be used to measure the age of artifacts, fossils, and rocks. The half-life of C 14 is 5730 years. a) If a sample shows only one-fourth of its estimated

More information

IMPROVING THE OUTCOMES OF BREAST RADIATION THERAPY: THE PRONE POSITION. Kaylyn Olson

IMPROVING THE OUTCOMES OF BREAST RADIATION THERAPY: THE PRONE POSITION. Kaylyn Olson IMPROVING THE OUTCOMES OF BREAST RADIATION THERAPY: THE PRONE POSITION Kaylyn Olson BACKGROUND Over 230,000 women will be diagnosed with breast cancer this year and approximately half of these women will

More information

Electro Magnetic Field Dr. Harishankar Ramachandran Department of Electrical Engineering Indian Institute of Technology Madras

Electro Magnetic Field Dr. Harishankar Ramachandran Department of Electrical Engineering Indian Institute of Technology Madras Electro Magnetic Field Dr. Harishankar Ramachandran Department of Electrical Engineering Indian Institute of Technology Madras Lecture - 7 Gauss s Law Good morning. Today, I want to discuss two or three

More information

CRYSTAL STRUCTURES WITH CUBIC UNIT CELLS

CRYSTAL STRUCTURES WITH CUBIC UNIT CELLS CRYSTAL STRUCTURES WITH CUBIC UNIT CELLS Crystalline solids are a three dimensional collection of individual atoms, ions, or whole molecules organized in repeating patterns. These atoms, ions, or molecules

More information

the Cartesian coordinate system (which we normally use), in which we characterize points by two coordinates (x, y) and

the Cartesian coordinate system (which we normally use), in which we characterize points by two coordinates (x, y) and 2.5.2 Standard coordinate systems in R 2 and R Similarly as for functions of one variable, integrals of functions of two or three variables may become simpler when changing coordinates in an appropriate

More information

Atoms with More than One Electron

Atoms with More than One Electron Fun with the Periodic Table Activity 6 Atoms with More than One Electron GOALS In this activity you will: View the spectra of various materials. Graphically analyze patterns in the amounts of energy required

More information

Simulation Modeling in Dosimetry

Simulation Modeling in Dosimetry Simulation Modeling in Dosimetry Aleksei Zhdanov Ural Federal University named after the first President of Russia B. N. Yeltsin, Yekaterinburg, Russian Federation jjj1994@yandex.ru Leonid Dorosinskiy

More information

Chapter 30 X Rays GOALS. When you have mastered the material in this chapter, you will be able to:

Chapter 30 X Rays GOALS. When you have mastered the material in this chapter, you will be able to: Chapter 30 X Rays GOALS When you have mastered the material in this chapter, you will be able to: Definitions Define each of the following terms, and use it in an operational definition: hard and soft

More information

The posterior - the goal of Bayesian inference

The posterior - the goal of Bayesian inference Chapter 7 The posterior - the goal of Bayesian inference 7.1 Googling Suppose you are chosen, for your knowledge of Bayesian statistics, to work at Google as a search traffic analyst. Based on historical

More information

2009 Math Olympics Level II

2009 Math Olympics Level II Saginaw Valley State University 009 Math Olympics Level II 1. f x) is a degree three monic polynomial leading coefficient is 1) such that f 0) = 3, f 1) = 5 and f ) = 11. What is f 5)? a) 7 b) 113 c) 16

More information

Sample Question: A point in empty space is near 3 charges as shown. The distances from the point to each charge are identical.

Sample Question: A point in empty space is near 3 charges as shown. The distances from the point to each charge are identical. A point in empty space is near 3 charges as shown. The distances from the point to each charge are identical. A. Draw a vector showing the direction the electric field points. y +2Q x B. What is the angle

More information

Advanced Ceramics for Strategic Applications Prof. H. S. Maiti Department of Mechanical Engineering Indian Institute of Technology, Kharagpur

Advanced Ceramics for Strategic Applications Prof. H. S. Maiti Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Advanced Ceramics for Strategic Applications Prof. H. S. Maiti Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Lecture -3 Crystal Structure Having made some introductory

More information

PACKERS PUZZLE. Teacher s Guide Getting Started. Kai Chung Tam Macau, People s Republic of China

PACKERS PUZZLE. Teacher s Guide Getting Started. Kai Chung Tam Macau, People s Republic of China Teacher s Guide Getting Started Kai Chung Tam Macau, People s Republic of China Purpose In this two-day lesson, students consider ways to estimate the number of spheres that will fit within a container.

More information

VANCOUVER 2010 OLYMPIC MATH TRAIL SOLUTIONS

VANCOUVER 2010 OLYMPIC MATH TRAIL SOLUTIONS VANCOUVER 010 OLYMPIC MATH TRAIL SOLUTIONS QUESTION 1 - Flight Travel Time What time should Kenji and Yumi s flight arrive in Vancouver? 8800 km 1749 km Tokyo LA Vancouver 10 hours 1hr 59 mins = 13 hrs

More information

Matter, energy, power and heat Units and prefixes used in radiography Radiological units Useful mathematics Proportions and the inverse square law

Matter, energy, power and heat Units and prefixes used in radiography Radiological units Useful mathematics Proportions and the inverse square law Chapter 1 Essential Mathematics and Physics Introduction Chapter contents Matter, energy, power and heat Units and prefixes used in radiography Radiological units Useful mathematics Proportions and the

More information

Student Outcomes. Lesson Notes. Classwork. Opening Exercises 1 3 (5 minutes)

Student Outcomes. Lesson Notes. Classwork. Opening Exercises 1 3 (5 minutes) Student Outcomes Students calculate the decimal expansion of using basic properties of area. Students estimate the value of expressions such as. Lesson Notes For this lesson, students will need grid paper

More information

1. Introductory Examples

1. Introductory Examples 1. Introductory Examples We introduce the concept of the deterministic and stochastic simulation methods. Two problems are provided to explain the methods: the percolation problem, providing an example

More information

14.1. Multiple Integration. Iterated Integrals and Area in the Plane. Iterated Integrals. Iterated Integrals. MAC2313 Calculus III - Chapter 14

14.1. Multiple Integration. Iterated Integrals and Area in the Plane. Iterated Integrals. Iterated Integrals. MAC2313 Calculus III - Chapter 14 14 Multiple Integration 14.1 Iterated Integrals and Area in the Plane Objectives Evaluate an iterated integral. Use an iterated integral to find the area of a plane region. Copyright Cengage Learning.

More information

Instructions. Do not open your test until instructed to do so!

Instructions. Do not open your test until instructed to do so! st Annual King s College Math Competition King s College welcomes you to this year s mathematics competition and to our campus. We wish you success in this competition and in your future studies. Instructions

More information

Chapter 22. Dr. Armen Kocharian. Gauss s Law Lecture 4

Chapter 22. Dr. Armen Kocharian. Gauss s Law Lecture 4 Chapter 22 Dr. Armen Kocharian Gauss s Law Lecture 4 Field Due to a Plane of Charge E must be perpendicular to the plane and must have the same magnitude at all points equidistant from the plane Choose

More information

Describe the main branches of natural science and relate them to each other. Describe the relationship between science and technology.

Describe the main branches of natural science and relate them to each other. Describe the relationship between science and technology. Section 1 The Nature of Science Objectives Describe the main branches of natural science and relate them to each other. Describe the relationship between science and technology. Distinguish between scientific

More information

SOLID STATE 18. Reciprocal Space

SOLID STATE 18. Reciprocal Space SOLID STATE 8 Reciprocal Space Wave vectors and the concept of K-space can simplify the explanation of several properties of the solid state. They will be introduced to provide more information on diffraction

More information

OALCF Task Cover Sheet

OALCF Task Cover Sheet Learner Name: OALCF Task Cover Sheet Date Started: Date Completed: Successful Completion: Yes No Goal Path: Employment Apprenticeship Secondary School Post Secondary Independence Task Description: Carpenters

More information

Lecture 18: 3D Review, Examples

Lecture 18: 3D Review, Examples Lecture 18: 3D Review, Examples A real (2D) quantum dot http://pages.unibas.ch/physmeso/pictures/pictures.html Lecture 18, p 1 Lect. 16: Particle in a 3D Box (3) The energy eigenstates and energy values

More information

A Correlation of. Pearson Integrated CME Project. to the. Common Core State Standards for Mathematics - High School PARRC Model Content Frameworks

A Correlation of. Pearson Integrated CME Project. to the. Common Core State Standards for Mathematics - High School PARRC Model Content Frameworks A Correlation of Pearson 2013 to the Common Core State Standards for A Correlation of Pearson Introduction This document demonstrates how Pearson 2013 meets the standards of the Mathematics, PAARC Model

More information

Name: Nuclear Practice Test Ms. DeSerio

Name: Nuclear Practice Test Ms. DeSerio Name: Nuclear Practice Test Ms. DeSerio 1. Which nuclear emission has the greatest mass and the least penetrating power? 1) an alpha particle 2) a beta particle 3) a neutron 4) a positron 2. The nucleus

More information

Lecture PowerPoint. Chapter 31 Physics: Principles with Applications, 6 th edition Giancoli

Lecture PowerPoint. Chapter 31 Physics: Principles with Applications, 6 th edition Giancoli Lecture PowerPoint Chapter 31 Physics: Principles with Applications, 6 th edition Giancoli 2005 Pearson Prentice Hall This work is protected by United States copyright laws and is provided solely for the

More information

Chapter 7. The Quantum- Mechanical Model of the Atom. Chapter 7 Lecture Lecture Presentation. Sherril Soman Grand Valley State University

Chapter 7. The Quantum- Mechanical Model of the Atom. Chapter 7 Lecture Lecture Presentation. Sherril Soman Grand Valley State University Chapter 7 Lecture Lecture Presentation Chapter 7 The Quantum- Mechanical Model of the Atom Sherril Soman Grand Valley State University The Beginnings of Quantum Mechanics Until the beginning of the twentieth

More information

Absolute Extrema and Constrained Optimization

Absolute Extrema and Constrained Optimization Calculus 1 Lia Vas Absolute Extrema and Constrained Optimization Recall that a function f (x) is said to have a relative maximum at x = c if f (c) f (x) for all values of x in some open interval containing

More information

Introduction to Science. Chapter 1. Section 1 The Nature of Science. Section 2 The Way Science Works. Section 3 Organizing Data

Introduction to Science. Chapter 1. Section 1 The Nature of Science. Section 2 The Way Science Works. Section 3 Organizing Data Chapter 1 Introduction to Science Section 1 The Nature of Science Section 2 The Way Science Works Section 3 Organizing Data Skills Experiment Design SI Units and SI unit conversions Using graphs Scientific

More information

Lecture PowerPoints. Chapter 31 Physics: Principles with Applications, 7th edition Giancoli

Lecture PowerPoints. Chapter 31 Physics: Principles with Applications, 7th edition Giancoli Lecture PowerPoints Chapter 31 Physics: Principles with Applications, 7th edition Giancoli This work is protected by United States copyright laws and is provided solely for the use of instructors in teaching

More information

X-ray Interaction with Matter

X-ray Interaction with Matter X-ray Interaction with Matter 10-526-197 Rhodes Module 2 Interaction with Matter kv & mas Peak kilovoltage (kvp) controls Quality, or penetrating power, Limited effects on quantity or number of photons

More information

1 Geometry of R Conic Sections Parametric Equations More Parametric Equations Polar Coordinates...

1 Geometry of R Conic Sections Parametric Equations More Parametric Equations Polar Coordinates... Contents 1 Geometry of R 1.1 Conic Sections............................................ 1. Parametric Equations........................................ 3 1.3 More Parametric Equations.....................................

More information

4 Pictorial proofs. 1. I convert 40 C to Fahrenheit: = I react: Wow, 104 F. That s dangerous! Get thee to a doctor!

4 Pictorial proofs. 1. I convert 40 C to Fahrenheit: = I react: Wow, 104 F. That s dangerous! Get thee to a doctor! 4 Pictorial proofs 4. Adding odd numbers 58 4. Arithmetic and geometric means 60 4. Approximating the logarithm 66 4.4 Bisecting a triangle 70 4.5 Summing series 7 4.6 Summary and further problems 75 Have

More information

Calculus with Analytic Geometry I Exam 10, Take Home Friday, November 8, 2013 Solutions.

Calculus with Analytic Geometry I Exam 10, Take Home Friday, November 8, 2013 Solutions. All exercises are from Section 4.7 of the textbook. 1. Calculus with Analytic Geometry I Exam 10, Take Home Friday, November 8, 2013 Solutions. 2. Solution. The picture suggests using the angle θ as variable;

More information

Triple Integrals. y x

Triple Integrals. y x Triple Integrals. (a) If is an solid (in space), what does the triple integral dv represent? Wh? (b) Suppose the shape of a solid object is described b the solid, and f(,, ) gives the densit of the object

More information

Development of beam delivery systems for proton (ion) therapy

Development of beam delivery systems for proton (ion) therapy 7th 28th of July 213, JINR Dubna, Russia Development of beam delivery systems for proton (ion) therapy S t u d e n t : J o z e f B o k o r S u p e r v i s o r : D r. A l e x a n d e r M o l o k a n o v

More information

Measurement: The Basics

Measurement: The Basics I. Introduction Measurement: The Basics Physics is first and foremost an experimental science, meaning that its accumulated body of knowledge is due to the meticulous experiments performed by teams of

More information

MATH 223 REVIEW PROBLEMS

MATH 223 REVIEW PROBLEMS * * * MATH 223 REVIEW PROBLEMS 1 1. You are in a nicely heated cabin in the winter. Deciding that it s too warm you open a small window. Let be the temperature in the room minutes after the window was

More information

Chapter 36, example problems:

Chapter 36, example problems: Chapter 6, example problems: (6.0) Light wave with electric field E y (x, t) = E max sin [(.20 0 7 m ) x ω t] passes through a slit. First dark band at ±2.6 from the center of the diffraction pattern.

More information

FLUX OF VECTOR FIELD INTRODUCTION

FLUX OF VECTOR FIELD INTRODUCTION Chapter 3 GAUSS LAW ntroduction Flux of vector field Solid angle Gauss s Law Symmetry Spherical symmetry Cylindrical symmetry Plane symmetry Superposition of symmetric geometries Motion of point charges

More information

Chapter 2 - Analyzing Data

Chapter 2 - Analyzing Data Chapter 2 - Analyzing Data Section 1: Units and Measurements Section 2: Scientific Notation and Dimensional Analysis Section 3: Uncertainty in Data Section 4: Representing Data Chemists collect and analyze

More information

Attempt QUESTIONS 1 and 2, and THREE other questions. penalised if you attempt additional questions.

Attempt QUESTIONS 1 and 2, and THREE other questions. penalised if you attempt additional questions. UNIVERSITY OF EAST ANGLIA School of Mathematics Main Series UG Examination 2017 18 CALCULUS AND MULTIVARIABLE CALCULUS MTHA4005Y Time allowed: 3 Hours Attempt QUESTIONS 1 and 2, and THREE other questions.

More information

Mathathon Round 1 (2 points each)

Mathathon Round 1 (2 points each) Mathathon Round ( points each). A circle is inscribed inside a square such that the cube of the radius of the circle is numerically equal to the perimeter of the square. What is the area of the circle?

More information

Thanks for downloading this product from Time Flies!

Thanks for downloading this product from Time Flies! Thanks for downloading this product from Time Flies! I hope you enjoy using this product. Follow me at my TpT store! My Store: https://www.teacherspayteachers.com/store/time-flies 2018 Time Flies. All

More information

Problem A: Solar Sailing to Mars

Problem A: Solar Sailing to Mars Problem A: Solar Sailing to Mars Team 670 November 13, 017 Abstract Solar sails became reality lately, being far more affordable then most of modern methods of propulsion in space. They obviously have

More information

ELECTROMAGNETIC WAVES ELECTROMAGNETIC SPECTRUM

ELECTROMAGNETIC WAVES ELECTROMAGNETIC SPECTRUM VISUAL PHYSICS ONLINE MODULE 7 NATURE OF LIGHT ELECTROMAGNETIC WAVES ELECTROMAGNETIC SPECTRUM When white light passes through a prism, it spreads out into a rainbow of colours, with red at one end and

More information

Temperature and Luminosity of Stars: Wein s Law and the Stephan-Boltzmann Law

Temperature and Luminosity of Stars: Wein s Law and the Stephan-Boltzmann Law Write answers to Q s on another paper Temperature and Luminosity of Stars: Wein s Law and the Stephan-Boltzmann Law Learning Objectives To understand thermal spectra To understand Wien s Law and the Stephan-Boltzmann

More information

PHYSICS - CLUTCH CH 22: ELECTRIC FORCE & FIELD; GAUSS' LAW

PHYSICS - CLUTCH CH 22: ELECTRIC FORCE & FIELD; GAUSS' LAW !! www.clutchprep.com CONCEPT: ELECTRIC CHARGE e Atoms are built up of protons, neutrons and electrons p, n e ELECTRIC CHARGE is a property of matter, similar to MASS: MASS (m) ELECTRIC CHARGE (Q) - Mass

More information

Please allow yourself one to two hours to complete the following sections of the packet. College Integrated Geometry Honors Integrated Geometry

Please allow yourself one to two hours to complete the following sections of the packet. College Integrated Geometry Honors Integrated Geometry Incoming Integrated Geometry Summer Work Dear Incoming Integrated Geometry Students, To better prepare for your high school mathematics entry process, summer work is assigned to ensure an easier transition

More information

Waves & Radiation exam questions

Waves & Radiation exam questions National 5 Physics Waves & Radiation exam questions these questions have been collated from previous Standard Grade (Credit) and Intermediate 2 exams Thurso High School 1. A mountain climber carries a

More information

1. Base your answer to the following question on The sphere was dropped into water in a graduated cylinder as shown below.

1. Base your answer to the following question on The sphere was dropped into water in a graduated cylinder as shown below. 1. Base your answer to the following question on The sphere was dropped into water in a graduated cylinder as shown below. 3. A student measured the mass and volume of the mineral crystal below and recorded

More information

How to Build a Habitable Planet Summary. Chapter 1 The Setting

How to Build a Habitable Planet Summary. Chapter 1 The Setting How to Build a Habitable Planet Summary Chapter 1 The Setting The universe as we know it began about 15 billion years ago with an explosion that is called the big bang. There is no record of any prior

More information

Initial Certification

Initial Certification Initial Certification Medical Physics Part 1 Content Guide Part 1 Content Guides and Sample Questions PLEASE NOTE: List of Constants and Physical Values for Use on the Part 1 Physics Exam The ABR provides

More information

2009 Math Olympics Level II Solutions

2009 Math Olympics Level II Solutions Saginaw Valley State University 009 Math Olympics Level II Solutions 1. f (x) is a degree three monic polynomial (leading coefficient is 1) such that f (0) 3, f (1) 5 and f () 11. What is f (5)? (a) 7

More information

Improving Dense Packings of Equal Disks in a Square

Improving Dense Packings of Equal Disks in a Square Improving Dense Packings of Equal Disks in a Square David W. Boll Jerry Donovan Ronald L. Graham Boris D. Lubachevsky Hewlett-Packard Hewlett-Packard University of California Lucent Technologies 00 st

More information

Chapter 10 Acceptance Tests and Commissioning Measurements

Chapter 10 Acceptance Tests and Commissioning Measurements Chapter 10 Acceptance Tests and Commissioning Measurements This set of 189 slides is based on Chapter 10 authored by J. L. Horton of the IAEA publication (ISBN 92-0-107304-6): Radiation Oncology Physics:

More information

3.012 Structure An Introduction to X-ray Diffraction

3.012 Structure An Introduction to X-ray Diffraction 3.012 Structure An Introduction to X-ray Diffraction This handout summarizes some topics that are important for understanding x-ray diffraction. The following references provide a thorough explanation

More information

WM 07 Conference, February 25 March 01, 2007, Tucson, AZ

WM 07 Conference, February 25 March 01, 2007, Tucson, AZ Design and Construction of a High Energy X-Ray R&D Facility, and the Development and Optimization of Real Time Radioisotopic Characterization of Remote Handled Waste at MeV Energies. S. Halliwell, V.J.Technologies

More information

UNC Charlotte 2005 Comprehensive March 7, 2005

UNC Charlotte 2005 Comprehensive March 7, 2005 March 7, 2005 1 The numbers x and y satisfy 2 x = 15 and 15 y = 32 What is the value xy? (A) 3 (B) 4 (C) 5 (D) 6 (E) none of A, B, C or D 2 Suppose x, y, z, and w are real numbers satisfying x/y = 4/7,

More information

Lab 5 The Green House Effect Pre-lab

Lab 5 The Green House Effect Pre-lab Lab 5 The Green House Effect Pre-lab NAME Partner Given information: Radius of the Sun: 6.957 X 10 8 m Radius of the Earth: 6.371 X 10 6 m Emissivity of Sun: ~1.0 Surface temperature of the Sun: 5,778

More information

1. Find and classify the extrema of h(x, y) = sin(x) sin(y) sin(x + y) on the square[0, π] [0, π]. (Keep in mind there is a boundary to check out).

1. Find and classify the extrema of h(x, y) = sin(x) sin(y) sin(x + y) on the square[0, π] [0, π]. (Keep in mind there is a boundary to check out). . Find and classify the extrema of hx, y sinx siny sinx + y on the square[, π] [, π]. Keep in mind there is a boundary to check out. Solution: h x cos x sin y sinx + y + sin x sin y cosx + y h y sin x

More information

Log1 Contest Round 2 Theta Geometry

Log1 Contest Round 2 Theta Geometry 008 009 Log Contest Round Theta Geometry Name: Leave answers in terms of π. Non-integer rational numbers should be given as a reduced fraction. Units are not needed. 4 points each What is the perimeter

More information

LABORATORY VIII NUCLEAR PHENOMENA

LABORATORY VIII NUCLEAR PHENOMENA LABORATORY VIII NUCLEAR PHENOMENA Radioactive decay is the emission of particles such as photons, electrons, neutrons, or even other nuclei when atomic nuclei go from a high energy state to a lower energy

More information

AP Physics C. Electric Potential and Capacitance. Free Response Problems

AP Physics C. Electric Potential and Capacitance. Free Response Problems AP Physics C Electric Potential and Capacitance Free Response Problems 1. Two stationary point charges + are located on the y-axis at a distance L from the origin, as shown above. A third charge +q is

More information

MATH2321, Calculus III for Science and Engineering, Fall Name (Printed) Print your name, the date, and then sign the exam on the line

MATH2321, Calculus III for Science and Engineering, Fall Name (Printed) Print your name, the date, and then sign the exam on the line MATH2321, Calculus III for Science and Engineering, Fall 218 1 Exam 2 Name (Printed) Date Signature Instructions STOP. above. Print your name, the date, and then sign the exam on the line This exam consists

More information

Chemistry 400 Note: Problem #21 is a separate 10-point assignment! I. Multiple Choice

Chemistry 400 Note: Problem #21 is a separate 10-point assignment! I. Multiple Choice Chemistry 400 Homework 7, Chapter 7 Note: Problem #21 is a separate 10-point assignment! I. Multiple Choice 1. Which graph best describes the radial wavefunction of a 2s orbital? (A) (B) (C) (D) *2. The

More information

Physics 111 Homework Solutions Week #10 - Thursday

Physics 111 Homework Solutions Week #10 - Thursday Physics 111 Homework Solutions Week #10 - Thursday Monday, March 8, 2010 Chapter 26 Questions 26.1 The atomic number Z is the number of protons in the nucleus. It distinguishes the different types of atoms.

More information

Dividing in Scientific Notation Name (page 778)

Dividing in Scientific Notation Name (page 778) LESSON 111 Dividing in Scientific Notation Name (page 778) To divide powers of 10, subtract the exponents. 10 7 10 4 = 10 7 4 = 10 3 To divide numbers in scientific notation: 1. Divide the decimal or whole

More information

Section 3.1 Quadratic Functions

Section 3.1 Quadratic Functions Chapter 3 Lecture Notes Page 1 of 72 Section 3.1 Quadratic Functions Objectives: Compare two different forms of writing a quadratic function Find the equation of a quadratic function (given points) Application

More information

Integration is the reverse of the process of differentiation. In the usual notation. k dx = kx + c. kx dx = 1 2 kx2 + c.

Integration is the reverse of the process of differentiation. In the usual notation. k dx = kx + c. kx dx = 1 2 kx2 + c. PHYS122 - Electricity and Magnetism Integration Reminder Integration is the reverse of the process of differentiation. In the usual notation f (x)dx = f(x) + constant The derivative of the RHS gives you

More information

(10%) (c) What other peaks can appear in the pulse-height spectrum if the detector were not small? Give a sketch and explain briefly.

(10%) (c) What other peaks can appear in the pulse-height spectrum if the detector were not small? Give a sketch and explain briefly. Sample questions for Quiz 3, 22.101 (Fall 2006) Following questions were taken from quizzes given in previous years by S. Yip. They are meant to give you an idea of the kind of questions (what was expected

More information

Conductors and Insulators

Conductors and Insulators Conductors and Insulators Lecture 11: Electromagnetic Theory Professor D. K. Ghosh, Physics Department, I.I.T., Bombay Self Energy of a Charge Distribution : In Lecture 1 we briefly discussed what we called

More information

x y x y 15 y is directly proportional to x. a Draw the graph of y against x.

x y x y 15 y is directly proportional to x. a Draw the graph of y against x. 3 8.1 Direct proportion 1 x 2 3 5 10 12 y 6 9 15 30 36 B a Draw the graph of y against x. y 40 30 20 10 0 0 5 10 15 20 x b Write down a rule for y in terms of x.... c Explain why y is directly proportional

More information

Atomic Concepts and Nuclear Chemistry Regents Review

Atomic Concepts and Nuclear Chemistry Regents Review 1. In the late 1800s, experiments using cathode ray tubes led to the discovery of the 10.Compared to an atom of phosphorus-31, an atom of sulfur-32 contains A) electron B) neutron C) positron D) proton

More information

This Week. 7/20/2016 Physics 214 Spring

This Week. 7/20/2016 Physics 214 Spring This Week Atoms and nuclei What are we made of? The periodic table Why does it stop? How were the elements made? Radioactive decay Useful but can be toxic Discovery of X Rays: Cathode Rays and TV sets

More information

DRAFT. New York State Testing Program Grade 8 Common Core Mathematics Test. Released Questions with Annotations

DRAFT. New York State Testing Program Grade 8 Common Core Mathematics Test. Released Questions with Annotations DRAFT New York State Testing Program Grade 8 Common Core Mathematics Test Released Questions with Annotations August 03 08009_ Lucy graphed a system of linear equations. y 0 9 8 7 5 3-0 -9-8 -7 - -5 -

More information

Example: What number is the arrow pointing to?

Example: What number is the arrow pointing to? Number Lines Investigation 1 Inv. 1 To draw a number line, begin by drawing a line. Next, put tick marks on the line, keeping an equal distance between the marks. Then label the tick marks with numbers.

More information

PublicServicePrep Comprehensive Guide to Canadian Public Service Exams

PublicServicePrep Comprehensive Guide to Canadian Public Service Exams PublicServicePrep Comprehensive Guide to Canadian Public Service Exams Copyright 2009 Dekalam Hire Learning Incorporated Teaching Material Math Addition 7 + 5 7 + 5 = 12 12 The above two equations have

More information

Volume vs. Diameter. Teacher Lab Discussion. Overview. Picture, Data Table, and Graph

Volume vs. Diameter. Teacher Lab Discussion. Overview. Picture, Data Table, and Graph 5 6 7 Middle olume Length/olume vs. Diameter, Investigation page 1 of olume vs. Diameter Teacher Lab Discussion Overview Figure 1 In this experiment we investigate the relationship between the diameter

More information

Investigating the force on an electric charge moving through a magnetic field

Investigating the force on an electric charge moving through a magnetic field Investigating the force on an electric charge moving through a magnetic field Abstract The purpose of this physics investigation is to prove the equation F qvbsin, an equation found in the IB s Physics

More information

ASTM E545 TUTORIAL ON PROPER IMAGE QUALITY INDICATOR USAGE

ASTM E545 TUTORIAL ON PROPER IMAGE QUALITY INDICATOR USAGE ASTM E545 IQI USAGE TUTORIAL Page 1 of 9 ASTM E545 TUTORIAL ON PROPER IMAGE QUALITY INDICATOR USAGE Neutron radiography is a non-destructive testing method similar to the more familiar x- ray, but which

More information

1. The sides of a triangle are in the ratio 3 : 5 : 9. Which of the following words best describes the triangle?

1. The sides of a triangle are in the ratio 3 : 5 : 9. Which of the following words best describes the triangle? UNIVERSITY OF NORTH CAROLINA CHARLOTTE 999 HIGH SCHOOL MATHEMATICS CONTEST March 8, 999 The sides of a triangle are in the ratio : 5 : 9 Which of the following words best describes the triangle? (A) obtuse

More information

Table 2.1 presents examples and explains how the proper results should be written. Table 2.1: Writing Your Results When Adding or Subtracting

Table 2.1 presents examples and explains how the proper results should be written. Table 2.1: Writing Your Results When Adding or Subtracting When you complete a laboratory investigation, it is important to make sense of your data by summarizing it, describing the distributions, and clarifying messy data. Analyzing your data will allow you to

More information

Biological Dose Calculations for Particle Therapy in FLUKA

Biological Dose Calculations for Particle Therapy in FLUKA U N I V E R S I T Y O F B E R G E N Department of Physics and Technology Biological Dose Calculations for Particle Therapy in FLUKA Tordis J. Dahle May 2016 Introduction About half of all cancer patients

More information

Math Wrangle Practice Problems

Math Wrangle Practice Problems Math Wrangle Practice Problems American Mathematics Competitions November 19, 2010 1. Find the sum of all positive two-digit integers that are divisible by each of their digits. 2. A finite set S of distinct

More information