2013 Purdue University 1

Size: px
Start display at page:

Download "2013 Purdue University 1"

Transcription

1 Lab #11 Collisions: Rutherford Scattering OBJECTIVES In this lab you will: Use the energy and momentum principles to analyze the problem of Rutherford scattering, and estimate the initial conditions to be used in the VPython program. Complete the VPython program that implements Rutherford scattering, and analyze the plots of the momentum of the particles produced. Observe how the scattering angle varies with the impact parameter. 1. Analyzing the System & Completing the Program 1.1 Estimating Initial Conditions Collisions are the main tool for probing atomic and sub-atomic particles. A classic experiment by Lord Rutherford used fairly high energy alpha particles to probe how the protons were distributed in the atom. He guessed that the protons were all located in a tiny fraction of the volume of the atom. His experiment confirmed that the protons were all located in such a small volume (now known as the nucleus). We will use a computer model to re-create his experiment. This computer modeling of the experiment by Lord Rutherford is described in detail in your textbook (Problem 10.P.38). From Blackboard Learn, open the program rutherford.py in this week s Lab folder. It will use the momentum principle to test various trajectories of the alpha particles as they collide with a gold nucleus. It simplifies the problem by reducing it to two dimensions (no initial z-components of the position or momentum for either particle). The gold nucleus, which has 79 protons (charge of 79 x 1.6x10-19 C) and 197 total nucleons (mass of 197 x 1.7x10-27 kg) is initially located at the origin. The alpha particle, which has 2 protons (charge of 2 x 1.6x10-19 C) and 4 total nucleons (mass of 4 x 1.7x10-27 kg) is initially located somewhere on the x-axis (you ll choose an appropriate location). The initial momentum of the alpha particle is in the positive x-direction. You will calculate this momentum given that the alpha particles have a kinetic energy of 10MeV (10x10 6 ev) when they are far from the nucleus (recall that 1.6x10-19 J = one ev). Answer the following questions: 1.) Using the energy principle, find how close the alpha particle gets to the gold nucleus in a head-on collision. Use the initial kinetic energies given above. You may assume that the alpha particle and the gold nucleus start very far apart. (The gold atom s electrons may be ignored since they are much lighter than either of these particles and are easily scattered away from the nucleus by the approaching alpha particle with little loss of energy to the alpha particle only a few ev loss.) 2013 Purdue University 1

2 We now want to choose an initial position for the alpha particle for our program. If we start the alpha particle too far away, the program will take too long to complete (since it will take a great while for the alpha particle to get near the gold nucleus). If we start the particle too close to the nucleus, then our energy calculation in part 1 is no longer accurate (since we are not starting the particle far enough away). We need to choose an initial position so that the strength of the interaction between the particle and the nucleus ( the coulomb force ) is much smaller than it will be when the two are very close. 2.) Choose the initial position of the alpha particle so that the force on the alpha from the gold nucleus is 100 times smaller than it will be at closest approach. Remember that the gold nucleus is at the origin, and that the alpha particle is sitting somewhere on the negative x-axis. Use the space below to calculate this position symbolically. 3.) Calculate the force on the alpha particle at the closest approach distance (symbolically). 4.) Calculate the initial momentum of the alpha particle (again, symbolically) Purdue University 2

3 5.) We want to choose a Δt such that magnitude of the change in momentum ( p) of the alpha particle at closest approach is much smaller than the magnitude of the initial momentum of the alpha particle. Using the force you calculated in question 3, pick a Δt such that p is 100 times smaller than the initial momentum. Show your work in determining this time step in the space below. 6.) What is the initial velocity of the alpha particle? Is this a relativistic problem? How can you tell? 7.) Calculate the length of the while loop. Take the total length of the alpha particle s trajectory (~ twice the magnitude of the initial position) and divide it by the initial velocity. This gives a good estimate of the total time needed. Why might this be so? 8.) In the experiment, the alpha particles have an initial momentum in the positive x-direction, but they may travel along or parallel to the x-axis. The y-offset of their initial position is known as the impact parameter b. Sketch what the paths of the alpha particle and gold nucleus should look like with a nonzero impact parameter, so that you can recognize whether the program is behaving sensibly Purdue University 3

4 CHECKPOINT 1: Raise your hand and ask your instructor to check your work. You may continue on while you wait. 1.2 Completing the Program You now need to add in the constants you have just calculated into the Rutherford program, and complete the missing lines of code. Fill in a reasonable value for the impact parameter (b). Keep in mind the distance scales in which you are working! Input the initial position of the alpha particle. Input the masses (alpha.m and gold.m) and charges (alpha.c and gold.c) of the alpha particle and gold nucleus. Input the initial kinetic energy (alpha.k) of the alpha particle. Input the intial momentum (alpha.p) of the alpha particle, in terms of the initial kinetic energy of the alpha particle. Input the Δt (delta_t) the program should use. Input the length of time that the simulation is to run (simtime). Complete all of the lines inside the loop, which calculate the net force on the alpha particle (and the net force on the gold nucleus) as well as updating the momentum and position of the alpha particle and the gold nucleus. Run your program and see if it is behaving as you expect. 2. Plotting the p x and p y for the alpha particle and the gold nucleus Sketch what the plots of p x and p y for the alpha particle and for the gold nucleus should look like as a function of time, so that you can recognize whether the program is behaving sensibly. You should draw a curve for each particle on the graphs below. Assume a nonzero impact parameter. DO THIS BEFORE LOOKING AT THE PLOTS FROM YOUR PROGRAM! p x p y t t 2013 Purdue University 4

5 Before your while loop, you need to create graph windows and graphing curve objects for displaying the x components of momentum for the alpha particle and the gold nucleus, as well as the y components of momentum for both particles. The necessary statements are already in your program, so you just need to remove the comment symbols from the lines indicated below. #Graphing Objects gdisplay(xtitle='time',ytitle='px', x=400, y=0, width=400,height=200) alphapx=gcurve(color=color.blue) goldpx=gcurve(color=color.yellow) totalpx=gcurve(color=color.green) # this is for the px of gold + alpha gdisplay(xtitle='time',ytitle='py', x=400, y=200, width=400,height=200) alphapy=gcurve(color=color.blue) goldpy=gcurve(color=color.yellow) totalpy=gcurve(color=color.green) # this is for the py of gold + alpha Inside the while loop, after updating the time, uncomment the lines of code which add a point to the gcurve objects for each value of t. Run your program and use the plots to answer the questions below. 9.) What can be said about the total momenta of the alpha particle-gold particle system? Use the momentum principle to support your observation. 10.) How are the y-momenta of the alpha particle and the gold nucleus both before the collision related? What about after the collision? Use the momentum principle to support your observation. CHECKPOINT 2: Raise your hand and ask your instructor to check your work. You may continue on while you wait Purdue University 5

6 3. The Impact Parameter The impact parameter b is the magnitude of the initial y-coordinate of the alpha particle. If b=0, the collision with the gold nucleus is head-on and the scattering angle is 180 degrees (backscattered). The scattering angle decreases as b increases. Answer the following questions. 11.) Write the scattering angle (θ) in terms of the x and y components of the final momentum of the alpha particle p α,f,x and p α,f,y (after the collision). Uncomment the last 3 lines of your VPython code, which will calculate and print the scattering angle in terms of the x and y components of the final momentum of the alpha particle. The impact parameter is also printed. Try a few different impact parameters to see the different trajectories and scattering angles that they produce. Answer the following questions by trying out various impact parameters. 12.) What impact parameter gives approximately a scattering angle of 170 degrees? 13.) What impact parameter gives approximately a scattering angle of 10 degrees? 14.) If you wanted to scatter alpha particles at an angle of 170 degrees or greater, what range of impact parameters are allowed? Compute the size (area) of the target that the alpha particle has to hit so that it scatters at an angle of 170 degrees or greater (this is called a cross-section ). Figure on page 397 of your text will be helpful in visualizing the target Purdue University 6

7 15.) If you wanted to scatter alpha particles at an angle of 10 degrees or smaller, what range of impact parameters are allowed? (Remember we have found from our ball-spring model of matter that aluminum atoms are spaced by roughly 2x10-10 m). Compute the size (area) of the target that the alpha particle has to hit so that it scatters at an angle of 10 degrees or less (this is called a cross-section ). Figure on page 397 of your text will be helpful in visualizing the target. If you were firing alpha particles at a gold foil it is nearly impossible to know the impact parameter of each particle. Instead, you send many of them in a uniform beam so that a large region of the foil is illuminated. By comparing the relative number of alpha particles scattered at various angles, we can understand the structure of the atom. 16.) Compare the areas around an atom that will give scattering angles of less than 10 degrees and of more than 170 degrees. Which is more likely to occur? 17.) What is the ratio of the number of scattered alpha particles that are scattered by less than 10 degrees to the number scattered by more than 170 degrees (i.e. the ratio of the areas you found above)? 18.) Imagine you were Lord Rutherford and you did the experiment and found that the ratio of the number of alpha particles that are scattered less than 10 degrees to the number scattered by more than 170 degrees was approximately 1. What would that tell you about your model of the atom? Would you change it in any way? CHECKPOINT 3: Raise your hand and ask your instructor to check your work Purdue University 7

1 Newton s 2nd and 3rd Laws

1 Newton s 2nd and 3rd Laws Physics 13 - Winter 2007 Lab 2 Instructions 1 Newton s 2nd and 3rd Laws 1. Work through the tutorial called Newton s Second and Third Laws on pages 31-34 in the UW Tutorials in Introductory Physics workbook.

More information

Modeling the Motion of a Projectile in Air

Modeling the Motion of a Projectile in Air In this lab, you will do the following: Modeling the Motion of a Projectile in Air analyze the motion of an object fired from a cannon using two different fundamental physics principles: the momentum principle

More information

Visit for more fantastic resources. AQA. A Level. A Level Physics. Particle physics (Answers) Name: Total Marks: /30

Visit   for more fantastic resources. AQA. A Level. A Level Physics. Particle physics (Answers) Name: Total Marks: /30 Visit http://www.mathsmadeeasy.co.uk/ for more fantastic resources. AQA A Level A Level Physics Particle physics (Answers) Name: Total Marks: /30 Maths Made Easy Complete Tuition Ltd 2017 1. Rutherford

More information

Changes in Energy and Momentum

Changes in Energy and Momentum Changes in Energy and Momentum Name: Group Members: Date: TA s Name: Learning Objectives: 1. Understanding the relationship between force, distance and changes in kinetic energy. 2. Understanding the relationship

More information

Episode 522: The size of the nucleus

Episode 522: The size of the nucleus Episode 522: The size of the nucleus Having established the existence of the nucleus, you can now consider experimental evidence for its size, starting from the Rutherford experiment. Summary Discussion

More information

State the main interaction when an alpha particle is scattered by a gold nucleus

State the main interaction when an alpha particle is scattered by a gold nucleus Q1.(a) Scattering experiments are used to investigate the nuclei of gold atoms. In one experiment, alpha particles, all of the same energy (monoenergetic), are incident on a foil made from a single isotope

More information

Lab/Demo 5 Periodic Motion and Momentum PHYS 1800

Lab/Demo 5 Periodic Motion and Momentum PHYS 1800 Lab/Demo 5 Periodic Motion and Momentum PHYS 1800 Objectives: Learn to recognize and describe periodic motion. Develop some intuition for the principle of conservation of energy in periodic systems. Use

More information

Union College Winter 2013

Union College Winter 2013 Union College Winter 2013 Physics 121 Lab #4: Numerical Calculations of the Magnetic Field from a Moving Charge In Lab #3 you gained a little experience about using computers to calculate the electric

More information

Chapter 8. Experiment 6: Collisions in Two Dimensions. Historical Aside

Chapter 8. Experiment 6: Collisions in Two Dimensions. Historical Aside Chapter 8 Experiment 6: Collisions in Two Dimensions Last week we introduced the Principle of Conservation of Momentum and we demonstrated it experimentally in linear collisions. This week we will extend

More information

Conservation Laws (Collisions)

Conservation Laws (Collisions) PHYS-101 LAB-04 Conservation Laws (Collisions) 1. Objective The objectives of this experiment are: Measurement of momentum and kinetic energy in collisions. Experimentally test the validity of the principles

More information

The Particle Nature of Matter. Home Work Solutions

The Particle Nature of Matter. Home Work Solutions Chapter 4 The Particle Nature of Matter. Home Work Solutions 4. Problem 4.0 (In the text book) A typical Rutherford scattering apparatus consists of an evacuated tube containing a polonium- 20 α source

More information

Case Study: Analyzing Elementary Particle Trajectories

Case Study: Analyzing Elementary Particle Trajectories Case Study: Analyzing Elementary Particle Trajectories 13.6 The Bubble Chamber The bubble chamber was developed in 1952 by Donald Glaser (Figure 1), who won the Nobel Prize in physics in 1960 for his invention.

More information

NJCTL.org 2015 AP Physics 2 Nuclear Physics

NJCTL.org 2015 AP Physics 2 Nuclear Physics AP Physics 2 Questions 1. What particles make up the nucleus? What is the general term for them? What are those particles composed of? 2. What is the definition of the atomic number? What is its symbol?

More information

1 (a) Sketch the electric field surrounding the gold nucleus drawn below. (3)

1 (a) Sketch the electric field surrounding the gold nucleus drawn below. (3) 1 (a) Sketch the electric field surrounding the gold nucleus drawn below. (b) The spreadsheet shown approximately models the behaviour of an alpha particle as it approaches a gold nucleus. The proton number

More information

Physics Electrostatics

Physics Electrostatics Homework Procedure: Read pages specified in Honors Physics Essentials by Dan Fullerton. Questions labeled TQ will be questions about the text you read. These TQ s can be answered in one word, one phrase,

More information

The Atom. Result for Hydrogen. For example: the emission spectrum of Hydrogen: Screen. light. Hydrogen gas. Diffraction grating (or prism)

The Atom. Result for Hydrogen. For example: the emission spectrum of Hydrogen: Screen. light. Hydrogen gas. Diffraction grating (or prism) The Atom What was know about the atom in 1900? First, the existence of atoms was not universally accepted at this time, but for those who did think atoms existed, they knew: 1. Atoms are small, but they

More information

Impulse simply refers to a change in momentum, and is usually caused by a change in velocity, as described by p = m v.

Impulse simply refers to a change in momentum, and is usually caused by a change in velocity, as described by p = m v. 1 Impulse and Momentum Recall from Newton s 1 st Law: inertia is the tendency of an object to keep on doing what its already doing, that is: either remaining stationary, or: travelling at a constant velocity.

More information

Lab 10: Ballistic Pendulum

Lab 10: Ballistic Pendulum Lab Section (circle): Day: Monday Tuesday Time: 8:00 9:30 1:10 2:40 Lab 10: Ballistic Pendulum Name: Partners: Pre-Lab You are required to finish this section before coming to the lab it will be checked

More information

Quantum Physics III (8.06) Spring 2008 Assignment 10

Quantum Physics III (8.06) Spring 2008 Assignment 10 May 5, 2008 Quantum Physics III (8.06) Spring 2008 Assignment 10 You do not need to hand this pset in. The solutions will be provided after Friday May 9th. Your FINAL EXAM is MONDAY MAY 19, 1:30PM-4:30PM,

More information

Question 12.1: Choose the correct alternative from the clues given at the end of the each statement: (a) The size of the atom in Thomson s model is... the atomic size in Rutherford s model. (much greater

More information

Quantum Physics III (8.06) Spring 2005 Assignment 9

Quantum Physics III (8.06) Spring 2005 Assignment 9 Quantum Physics III (8.06) Spring 2005 Assignment 9 April 21, 2005 Due FRIDAY April 29, 2005 Readings Your reading assignment on scattering, which is the subject of this Problem Set and much of Problem

More information

LABORATORY V CONSERVATION OF MOMENTUM

LABORATORY V CONSERVATION OF MOMENTUM LABORATORY V CONSERVATION OF MOMENTUM In this lab you will use conservation of momentum to predict the motion of objects resulting from collisions. It is often difficult or impossible to obtain enough

More information

3/29/2010. Structure of the Atom. Knowledge of atoms in 1900 CHAPTER 6. Evidence in 1900 indicated that the atom was not a fundamental unit:

3/29/2010. Structure of the Atom. Knowledge of atoms in 1900 CHAPTER 6. Evidence in 1900 indicated that the atom was not a fundamental unit: 3/9/010 CHAPTER 6 Rutherford Scattering 6.1 The Atomic Models of Thomson and Rutherford 6. Definition of Cross Section 6. Rutherford Scattering 6.3 Structure of the Nucleus The opposite of a correct statement

More information

Physics 116. Nov 21, Session 31 De Broglie, duality, and uncertainty. R. J. Wilkes

Physics 116. Nov 21, Session 31 De Broglie, duality, and uncertainty. R. J. Wilkes Physics 116 Session 31 De Broglie, duality, and uncertainty Nov 21, 2011 R. J. Wilkes Email: ph116@u.washington.edu Announcements HW 6 due today Clicker scores have been updated on Webassign gradebook

More information

Nuclear Physics Fundamental and Application Prof. H. C. Verma Department of Physics Indian Institute of Technology, Kanpur

Nuclear Physics Fundamental and Application Prof. H. C. Verma Department of Physics Indian Institute of Technology, Kanpur Nuclear Physics Fundamental and Application Prof. H. C. Verma Department of Physics Indian Institute of Technology, Kanpur Lecture - 5 Semi empirical Mass Formula So, nuclear radius size we talked and

More information

Computer Model of Spring-Mass System, Part 3 of Springs Lab

Computer Model of Spring-Mass System, Part 3 of Springs Lab Computer Model of Spring-Mass System, Part 3 of Springs Lab QUESTIONS: Modeling the real world: Q1: Can a computer program of a mass-spring system, based on the finite-time form of the momentum principle

More information

u d Fig. 6.1 (i) Identify the anti-proton from the table of particles shown in Fig [1]

u d Fig. 6.1 (i) Identify the anti-proton from the table of particles shown in Fig [1] 1 (a) Fig. 6.1 shows the quark composition of some particles. proton neutron A B u u d u d d u d u u u u d Fig. 6.1 (i) Identify the anti-proton from the table of particles shown in Fig. 6.1. (ii) State

More information

End-of-Chapter Exercises

End-of-Chapter Exercises Wave-particle duality Light is not the only thing that exhibits both a wave nature and a particle nature everything exhibits such wave-particle duality. The wavelength of an object is inversely proportional

More information

Rutherford s Scattering Explanation

Rutherford s Scattering Explanation Exploration: Rutherford s Scattering Explanation The purpose of this exploration is to become familiar with Rutherford s analysis that formed a crucial part of his idea of a nuclear atom. To assist you

More information

Notes Momentum. Momentum and Impulse. - The product (multiplication) of an objects mass and velocity is called momentum.

Notes Momentum. Momentum and Impulse. - The product (multiplication) of an objects mass and velocity is called momentum. Notes Momentum Momentum and Impulse - The product (multiplication) of an objects mass and velocity is called momentum. Momentum is the energy of motion of an object. Momentum is represented by the letter.

More information

P627/Chem 542 Surface/Interface Science Spring 2013 Rutherford Backscattering Lab: Answers to Questions

P627/Chem 542 Surface/Interface Science Spring 2013 Rutherford Backscattering Lab: Answers to Questions Intro Questions: 1) How is a tandem ion accelerator different from a so-called van der Graaf accelerator, and what are some of the advantages (and drawbacks) of the tandem design? A tandem ion accelerator

More information

Nuclear Physics Fundamentals and Application Prof. H. C. Verma Department of Physics Indian Institute of Technology, Kanpur. Lecture 2 Nuclear Size

Nuclear Physics Fundamentals and Application Prof. H. C. Verma Department of Physics Indian Institute of Technology, Kanpur. Lecture 2 Nuclear Size Nuclear Physics Fundamentals and Application Prof. H. C. Verma Department of Physics Indian Institute of Technology, Kanpur Lecture 2 Nuclear Size So, I have given you the overview of nuclear physics.

More information

State the main interaction when an alpha particle is scattered by a gold nucleus

State the main interaction when an alpha particle is scattered by a gold nucleus Q1.(a) Scattering experiments are used to investigate the nuclei of gold atoms. In one experiment, alpha particles, all of the same energy (monoenergetic), are incident on a foil made from a single isotope

More information

PHYS 154 Practice Test 3 Spring 2018

PHYS 154 Practice Test 3 Spring 2018 The actual test contains 1 multiple choice questions and 2 problems. However, for extra exercise, this practice test includes 4 problems. Questions: N.B. Make sure that you justify your answers explicitly

More information

Nuclear Physics 2. D. atomic energy levels. (1) D. scattered back along the original direction. (1)

Nuclear Physics 2. D. atomic energy levels. (1) D. scattered back along the original direction. (1) Name: Date: Nuclear Physics 2. Which of the following gives the correct number of protons and number of neutrons in the nucleus of B? 5 Number of protons Number of neutrons A. 5 6 B. 5 C. 6 5 D. 5 2. The

More information

SPH4U1 Lesson 02 Measurement & Graphing

SPH4U1 Lesson 02 Measurement & Graphing DATA ANALYSIS LEARNING GOALS Students will be able to take a set of data and determine the type of proportionality between the variables determine the equation that describes the data compare the equation

More information

Chapter 22 Quantum Mechanics & Atomic Structure 22.1 Photon Theory of Light and The Photoelectric Effect Homework # 170

Chapter 22 Quantum Mechanics & Atomic Structure 22.1 Photon Theory of Light and The Photoelectric Effect Homework # 170 22.1 Photon Theory of Light and The Photoelectric Effect Homework # 170 See Homework #95 in "Chapter 12-Electrostatics" for the table of "Useful nformation" on atomic particles. 01. What is the energy

More information

Experiment 7: Conservation of Energy and Momentum in a Collision

Experiment 7: Conservation of Energy and Momentum in a Collision Experiment 7: Conservation of Energy and Momentum in a Collision You will check for conservation of kinetic energy and for conservation of momentum in a collision between two ball bearings. One ball bearing

More information

Physics 225 Relativity and Math Applications. Fall Unit 7 The 4-vectors of Dynamics

Physics 225 Relativity and Math Applications. Fall Unit 7 The 4-vectors of Dynamics Physics 225 Relativity and Math Applications Fall 2011 Unit 7 The 4-vectors of Dynamics N.C.R. Makins University of Illinois at Urbana-Champaign 2010 Physics 225 7.2 7.2 Physics 225 7.3 Unit 7: The 4-vectors

More information

Conservation of Linear Momentum

Conservation of Linear Momentum 1 Conservation of Linear Momentum Purpose: To understand conservation of linearl momentum; to investigate whether or not momentum and energy are conserved in elastic and inelastic collisions. To examine

More information

Electrostatics Notes 1 Charges and Coulomb s Law

Electrostatics Notes 1 Charges and Coulomb s Law Electrostatics Notes 1 Charges and Coulomb s Law Matter is made of particles which are or charged. The unit of charge is the ( ) Charges are, meaning that they cannot be It is thought that the total charge

More information

Lab #8: Momentum. p = mv

Lab #8: Momentum. p = mv Lab #8: Momentum Reading Assignment: Chapter 9, Sections 9-4 through Sections 9-7 Introduction: http://www.carbuyingtips.com/disaster.htm How do insurance companies reconstruct an accident, such as a car

More information

Computer Model of Spring-Mass System. Q1: Can a computer model of a mass-spring system, based on the finite-time form of the momentum principle

Computer Model of Spring-Mass System. Q1: Can a computer model of a mass-spring system, based on the finite-time form of the momentum principle QUESTIONS: Parts I, II (this week s activity): Computer Model of Spring-Mass System Q1: Can a computer model of a mass-spring system, based on the finite-time form of the momentum principle and using your

More information

Exercise 6: The conservation of energy and momentum

Exercise 6: The conservation of energy and momentum Physics 221 Name: Exercise 6: The conservation of energy and momentum Part 1: The projectile launcher s spring constant Objective: Through the use of the principle of conservation of energy (first law

More information

LABORATORY V CONSERVATION OF MOMENTUM

LABORATORY V CONSERVATION OF MOMENTUM LABORATORY V CONSERVATION OF MOMENTUM In this lab you will use conservation of momentum to predict the motion of objects resulting from interactions that are difficult to analyze with force concepts or

More information

Physics 8 Monday, September 16, 2013

Physics 8 Monday, September 16, 2013 Physics 8 Monday, September 16, 2013 Today: ch5 (energy). Read ch6 (relative motion) for Weds. Handing out printed HW3 now due Friday. (I put the PDF up online over the weekend.) Learning physics is both

More information

LECTURE 27: Gravitational potential energy

LECTURE 27: Gravitational potential energy Lectures Page 1 LECTURE 27: Gravitational potential energy Select LEARNING OBJECTIVES: i. ii. Construct an expression for the work due to gravity, defining this expression as gravitational potential energy

More information

α f k θ y N m mg Figure 1 Solution 1: (a) From Newton s 2 nd law: From (1), (2), and (3) Free-body diagram (b) 0 tan 0 then

α f k θ y N m mg Figure 1 Solution 1: (a) From Newton s 2 nd law: From (1), (2), and (3) Free-body diagram (b) 0 tan 0 then Question [ Work ]: A constant force, F, is applied to a block of mass m on an inclined plane as shown in Figure. The block is moved with a constant velocity by a distance s. The coefficient of kinetic

More information

Chapter 5 Energy Pearson Education, Inc. Slide 5-1

Chapter 5 Energy Pearson Education, Inc. Slide 5-1 Chapter 5 Energy Slide 5-1 Chapter 5: Energy Concepts Slide 5-2 Section 5.1: Classification of collisions Below are the v x (t) curves for two carts colliding. Notice that the velocity differences before

More information

Lab 7. Newton s Third Law and Momentum

Lab 7. Newton s Third Law and Momentum Lab 7. Newton s Third Law and Momentum Goals To explore the behavior of forces acting between two objects when they touch one another or interact with one another by some other means, such as a light string.

More information

Special Theory of Relativity Prof. Shiva Prasad Department of Physics Indian Institute of Technology, Bombay. Lecture - 15 Momentum Energy Four Vector

Special Theory of Relativity Prof. Shiva Prasad Department of Physics Indian Institute of Technology, Bombay. Lecture - 15 Momentum Energy Four Vector Special Theory of Relativity Prof. Shiva Prasad Department of Physics Indian Institute of Technology, Bombay Lecture - 15 Momentum Energy Four Vector We had started discussing the concept of four vectors.

More information

CONSERVATION of MOMENTUM

CONSERVATION of MOMENTUM 1 CONSERVATION of MOMENTUM Purpose: Understand conservation of momentum and energy in elastic and inelastic collisions. Examine the concept of impulse in a real-life situation. Apparatus: Pasco track,

More information

Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity?

Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity? Lab Exercise: Gravity (Report) Your Name & Your Lab Partner s Name Due Date Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity? 2. What are several advantage of

More information

Chapter 9 Linear Momentum

Chapter 9 Linear Momentum Chapter 9 Linear Momentum 7 12/7 16/7 Units of Chapter 9 Momentum, Impulse and Collisions Momentum and Impulse Define momentum Force and rate of change of momentum; resultant force as rate of change of

More information

CHAPTER 12 TEST REVIEW

CHAPTER 12 TEST REVIEW IB PHYSICS Name: Period: Date: # Marks: 76 Raw Score: IB Curve: DEVIL PHYSICS BADDEST CLASS ON CAMPUS CHAPTER 12 TEST REVIEW 1. An alpha particle is accelerated through a potential difference of 10 kv.

More information

Practice Exam #3 A N B. 1.2 N C N D N E. 0 N

Practice Exam #3 A N B. 1.2 N C N D N E. 0 N Practice Exam #3 1. A barbell is mounted on a nearly frictionless axle through its center. The low-mass rod has a length d = 0.9 m, and each ball has a mass m = 0.5 kg. At this instant, there are two forces

More information

TAP 522-6: Electrons measure the size of nuclei

TAP 522-6: Electrons measure the size of nuclei TAP 522-6: lectrons measure the size of nuclei Scattering by small particles Hold a glass plate smeared with a little milk, or dusted with lycopodium powder, in front of a point source of light and you

More information

July 19 - Work and Energy 1. Name Date Partners

July 19 - Work and Energy 1. Name Date Partners July 19 - Work and Energy 1 Name Date Partners WORK AND ENERGY Energy is the only life and is from the Body; and Reason is the bound or outward circumference of energy. Energy is eternal delight. William

More information

Calculating and displaying the magnetic field of a single moving charged particle

Calculating and displaying the magnetic field of a single moving charged particle 1 Introduction Calculating displaying the magnetic of a single moving charged particle A proton moves with a constant Calculating Calculating velocity of 4 10 displaying displaying 4 m/s in the the the

More information

Particle Nature of Matter. Chapter 4

Particle Nature of Matter. Chapter 4 Particle Nature of Matter Chapter 4 Modern physics When my grandfather was born, atoms were just an idea. That year, 1897, was marked by the discovery of the electron by J.J. Thomson. The nuclear model

More information

Momentum ~ Lab Name:

Momentum ~ Lab Name: Momentum ~ Lab Name: Instructions: Using a pencil, answer the following questions. The lab is marked, based on effort, completeness, neatness, and accuracy. Do your best! Part 1: Explosion In this section,

More information

Physics 111. Thursday, October 07, Conservation of Momentum. Kinetic Energy

Physics 111. Thursday, October 07, Conservation of Momentum. Kinetic Energy ics Thursday, ober 07, 2004 Ch 9: Ch 7: Momentum Conservation of Momentum Work Kinetic Energy Announcements Help this week: Wednesday, 8-9 pm in NSC 118/119 Sunday, 6:30-8 pm in CCLIR 468 Announcements

More information

EGS: Lab Activities. Virtual Visitor Center at SLAC

EGS: Lab Activities. Virtual Visitor Center at SLAC EGS Lab Activities (SLAC VVC) http://www2.slac.stanford.edu/vvc/egs/lab/lab.html of 2007-0-8 0: AM Virtual Visitor Center at SLAC EGS: Lab Activities Photons interact with material in many ways, but the

More information

Linear Motion with Constant Acceleration

Linear Motion with Constant Acceleration Linear Motion 1 Linear Motion with Constant Acceleration Overview: First you will attempt to walk backward with a constant acceleration, monitoring your motion with the ultrasonic motion detector. Then

More information

1. What is the minimum energy required to excite a mercury atom initially in the ground state? ev ev ev

1. What is the minimum energy required to excite a mercury atom initially in the ground state? ev ev ev Page 1 of 10 modern bank Name 25-MAY-05 1. What is the minimum energy required to excite a mercury atom initially in the ground state? 1. 4.64 ev 3. 10.20 ev 2. 5.74 ev 4. 10.38 ev 2. The diagram represents

More information

Lesson 6: How to Calculate Kinetic Energy

Lesson 6: How to Calculate Kinetic Energy KREUTTER:WORK AND ENERGY 1 Lesson 6: How to Calculate Kinetic Energy 6.1 Hypothesize (Derive a Mathematical Model) In a car crash testing facility, engineers evaluate the reaction of a car to a front impact.

More information

October 24. Linear Momentum: - It is a vector which may require breaking it into components

October 24. Linear Momentum: - It is a vector which may require breaking it into components October 24 Linear Momentum: - It is a vector which may require breaking it into components Newton s First Law: A body continues with Constant Linear Momentum unless it is acted upon by a Net External Force.

More information

Answers to examination-style questions. Answers Marks Examiner s tips

Answers to examination-style questions. Answers Marks Examiner s tips Chapter (a) There is a much greater gap between the mean values of x B for the 0.00 and 0.200 kg masses than there is between the 0.200 and 0.300 kg masses. Measurements for two more values of m between

More information

Particle Interactions in Detectors

Particle Interactions in Detectors Particle Interactions in Detectors Dr Peter R Hobson C.Phys M.Inst.P. Department of Electronic and Computer Engineering Brunel University, Uxbridge Peter.Hobson@brunel.ac.uk http://www.brunel.ac.uk/~eestprh/

More information

= : K A

= : K A Atoms and Nuclei. State two limitations of JJ Thomson s model of atom. 2. Write the SI unit for activity of a radioactive substance. 3. What observations led JJ Thomson to conclusion that all atoms have

More information

Physics 1020 Experiment 5. Momentum

Physics 1020 Experiment 5. Momentum 1 2 What is? is a vector quantity which is a product of a mass of the object and its velocity. Therefore p = mv If your system consists of more then one object (for example if it consists of two carts)

More information

Welcome back to PHY101: Major Concepts in Physics I. Photo: J. M. Schwarz

Welcome back to PHY101: Major Concepts in Physics I. Photo: J. M. Schwarz Welcome back to PHY101: Major Concepts in Physics I Photo: J. M. Schwarz Announcements Course Website: http://jmschwarztheorygroup.org/phy101/ HW 7 on Chapters 9 and 16 is due on Friday at 5PM in your

More information

Physics 111: Mechanics Lecture 8

Physics 111: Mechanics Lecture 8 Physics 111: Mechanics Lecture 8 Bin Chen NJIT Physics Department Chapter 8 Momentum, Impulse, and Collisions q q q q q q 8.1 Momentum and Impulse 8.2 Conservation of Momentum 8.3 Momentum Conservation

More information

Physics. Student Materials Advanced Higher. Tutorial Problems Electrical Phenomena HIGHER STILL. Spring 2000

Physics. Student Materials Advanced Higher. Tutorial Problems Electrical Phenomena HIGHER STILL. Spring 2000 Spring 2000 HIGHER STILL Physics Student Materials Advanced Higher Tutorial Problems Electrical Phenomena TUTORIAL 1 Coulomb's Inverse Square Law 1 A charge of 2.0 x 10-8 C is placed a distance of 2.0

More information

PHYSICS 311: Classical Mechanics Final Exam Solution Key (2017)

PHYSICS 311: Classical Mechanics Final Exam Solution Key (2017) PHYSICS 311: Classical Mechanics Final Exam Solution Key (017) 1. [5 points] Short Answers (5 points each) (a) In a sentence or two, explain why bicycle wheels are large, with all of the mass at the edge,

More information

Nuclear Physics Part 1: Nuclear Structure & Reactions

Nuclear Physics Part 1: Nuclear Structure & Reactions Nuclear Physics Part 1: Nuclear Structure & Reactions Last modified: 25/01/2018 Links The Atomic Nucleus Nucleons Strong Nuclear Force Nuclei Are Quantum Systems Atomic Number & Atomic Mass Number Nuclides

More information

LABORATORY VI MOMENTUM

LABORATORY VI MOMENTUM LABORATORY VI MOMENTUM In this lab you will use conservation of momentum to predict the motion of objects motions resulting from collisions. It is often difficult or impossible to obtain enough information

More information

Slide 1 / 57. Nuclear Physics & Nuclear Reactions Practice Problems

Slide 1 / 57. Nuclear Physics & Nuclear Reactions Practice Problems Slide 1 / 57 Nuclear Physics & Nuclear Reactions Practice Problems Slide 2 / 57 Multiple Choice Slide 3 / 57 1 The atomic nucleus consists of: A B C D E Electrons Protons Protons and electrons Protons

More information

PHYSICS 220 LAB #5: COLLISIONS

PHYSICS 220 LAB #5: COLLISIONS Name: Partners: PHYSICS 220 LAB #5: COLLISIONS A large pickup truck and a small car, both moving at the same speed, are about to collide head on. If they get stuck together, which way will the wreckage

More information

General Physics I Momentum

General Physics I Momentum General Physics I Momentum Linear Momentum: Definition: For a single particle, the momentum p is defined as: p = mv (p is a vector since v is a vector). So p x = mv x etc. Units of linear momentum are

More information

Why Does Uranium Alpha Decay?

Why Does Uranium Alpha Decay? Why Does Uranium Alpha Decay? Consider the alpha decay shown below where a uranium nucleus spontaneously breaks apart into a 4 He or alpha particle and 234 90 Th. 238 92U 4 He + 234 90Th E( 4 He) = 4.2

More information

The Nature of Matter Textbook Inside the Atom. 1) Explain how scientists discovered particles of an atom.

The Nature of Matter Textbook Inside the Atom. 1) Explain how scientists discovered particles of an atom. Models of the Atom The Nature of Matter Textbook Inside the Atom 1) Explain how scientists discovered particles of an atom. 2) Explain how today's model of the atom was developed. 3) Describe the structure

More information

This Week. 9/5/2018 Physics 214 Fall

This Week. 9/5/2018 Physics 214 Fall This Week Momentum Is momentum in basketball physics? Rockets and guns How do spaceships work? Collisions of objects They get impulses! Practical Propulsion 9/5/2018 Physics 214 Fall 2018 1 Momentum What

More information

Workbook for Introductory Mechanics Problem-Solving. To the Student

Workbook for Introductory Mechanics Problem-Solving. To the Student Workbook for Introductory Mechanics Problem-Solving Daniel M. Smith, Jr. South Carolina State University To the Student The Workbook should help you to learn how to think about physics problems before

More information

Multiple Choice Questions

Multiple Choice Questions Nuclear Physics & Nuclear Reactions Practice Problems PSI AP Physics B 1. The atomic nucleus consists of: (A) Electrons (B) Protons (C)Protons and electrons (D) Protons and neutrons (E) Neutrons and electrons

More information

ASSESSMENT UNIT PH5: FIELDS, FORCES AND NUCLEI. A.M. WEDNESDAY, 11 June hours

ASSESSMENT UNIT PH5: FIELDS, FORCES AND NUCLEI. A.M. WEDNESDAY, 11 June hours Candidate Name Centre Number 2 Candidate Number GCE A level 545/0 PHYSICS ASSESSMENT UNIT PH5: FIELDS, FORCES AND NUCLEI A.M. WEDNESDAY, June 2008 2 hours ADDITIONAL MATERIALS In addition to this paper,

More information

Physics 111. = Δ p. F net. p f. p i. = F net. m v i. = v i. v f. = m v i. + m a(δt) m v f. m v f. Δt = Δ p. I F net. = m a = m Δ v

Physics 111. = Δ p. F net. p f. p i. = F net. m v i. = v i. v f. = m v i. + m a(δt) m v f. m v f. Δt = Δ p. I F net. = m a = m Δ v ics Announcements day, ober 07, 004 Ch 9: Momentum Conservation of Momentum Ch 7: Work Kinetic Energy Help this week: Wednesday, 8-9 pm in NSC 118/119 Sunday, 6:30-8 pm in CCLIR 468 Announcements p = mv

More information

Inelastic Collisions

Inelastic Collisions Experiment 5 Inelastic Collisions 5.1 Objectives Measure the momentum and kinetic energy of two objects before and after a perfectly inelastic one-dimensional collision. Observe that the concept of conservation

More information

Chapter 9: Impulse and Momentum

Chapter 9: Impulse and Momentum Conservation Laws Much of the rest of Phys 221 will be concerned with conservation of energy and momentum This new perspective of conservation laws requires us to compare situations BEFORE and AFTER an

More information

Physics 111 Homework Solutions Week #9 - Friday

Physics 111 Homework Solutions Week #9 - Friday Physics 111 Homework Solutions Week #9 - Friday Tuesday, March 1, 2011 Chapter 24 Questions 246 The Compton shift in wavelength for the proton and the electron are given by Δλ p = h ( 1 cosφ) and Δλ e

More information

3 Charged Particle Motion in a Magnetic Field

3 Charged Particle Motion in a Magnetic Field 3 Charged Particle Motion in a Magnetic Field When you have completed the Particle Annihilation section and read all the text (especially section 2.2), click the Next button in the Particle Annihilation

More information

PHYSICS (SPECIFICATION A) PA10

PHYSICS (SPECIFICATION A) PA10 Surname Centre Number Other Names Candidate Number Leave blank Candidate Signature General Certificate of Education June 2004 Advanced Level Examination PHYSICS (SPECIFICATION A) Unit 10 The Synoptic Unit

More information

This Week. 7/29/2010 Physics 214 Fall

This Week. 7/29/2010 Physics 214 Fall This Week Momentum Is momentum in basketball physics? Rockets and guns How do spaceships work? Collisions of objects They get impulses! Practical Propulsion 7/29/2010 Physics 214 Fall 2010 1 Momentum What

More information

Think-Pair-Share. Linear Momentum (Ch 9) Linear Momentum, cont. Newton and Momentum

Think-Pair-Share. Linear Momentum (Ch 9) Linear Momentum, cont. Newton and Momentum Linear Momentum (Ch 9) The linear momentum of a particle or an object that can be modeled as a particle of mass m moving with a velocity v is defined to be the product of the mass and velocity: p = m v

More information

PHY 221 Lab 7 Work and Energy

PHY 221 Lab 7 Work and Energy PHY 221 Lab 7 Work and Energy Name: Partners: Goals: Before coming to lab, please read this packet and do the prelab on page 13 of this handout. Note: originally, Lab 7 was momentum and collisions. The

More information

The Atom. The Basic Building Block Atom from the Greek a-tom or indivisible (Democritus circa 500 BC) Four elements (earth, air, water, fire)

The Atom. The Basic Building Block Atom from the Greek a-tom or indivisible (Democritus circa 500 BC) Four elements (earth, air, water, fire) Atom Oxtoby hapter p - Basic Building Block Atom from the Greek a-tom or indivisible (Democritus circa 5 B) Four elements (earth, air, water, fire) Dalton (88) proposed modern atomic theory: All matter

More information

EXPERIMENT 6: COLLISIONS

EXPERIMENT 6: COLLISIONS TA name Lab section Date TA Initials (on completion) Name UW Student ID # Lab Partner(s) EXPERIMENT 6: COLLISIONS CONSERVATION OF ENERGY & MOMENTUM IN COLLISIONS 117 Textbook Reference: Walker, Chapter

More information

IMPACT Today s Objectives: In-Class Activities:

IMPACT Today s Objectives: In-Class Activities: Today s Objectives: Students will be able to: 1. Understand and analyze the mechanics of impact. 2. Analyze the motion of bodies undergoing a collision, in both central and oblique cases of impact. IMPACT

More information

Physics 1030 General Physics II

Physics 1030 General Physics II Final Exam April 20 6:00-9:00 pm University Center, Rm 210-224 (seats 1-211) 2016-03-30 Phys 1030 General Physics II (Gericke) 1 The De Broglie Wavelength (Section 29.5) de Broglie wavelength: hp Wavelength

More information

Tetraneutron? Can a four-neutron, no-proton particle exist? Published Feb. 3, 2016 in Physical Review Letters

Tetraneutron? Can a four-neutron, no-proton particle exist? Published Feb. 3, 2016 in Physical Review Letters Tetraneutron? Can a four-neutron, no-proton particle exist? Published Feb. 3, 2016 in Physical Review Letters A 186 MeV/u beam of radioactive 8 He (doublycharged) collides with normal 4 He Experiments

More information