Rutherford Scattering

Size: px
Start display at page:

Download "Rutherford Scattering"

Transcription

1 Rutherford Scattering Today's understanding of the atom, as a structure whose positive charge and majority of mass are concentrated in a minute nucleus, is due to the α particle scattering experiments conducted by Ernest Rutherford and his colleagues ( ). The essential features of Rutherford's apparatus are shown in Figure 1: α particles emitted from a radioactive source strike a thin gold foil. Most pass straight through the foil, but a fraction are scattered at an angle θ into the detector. The smaller the distance of closest approach between an α particle and a gold nucleus, the larger is the scattering angle. Vacuum chamber Collimators 41 Am! Source Detector " Source and target foil are mounted on a commong support and can rotate Au foil holder Figure 1: Setup for Rutherford Scattering

2 Background Information A theoretical analysis of the scattering process under the assumption of the existence of a small massive nucleus leads to the following expression for the cross section: ( ) d! d" = zze 4#$ 0 1 ( ) ( 4E kin ) ( ) sin 4 % (1.1) where z is the charge of the projectile (for an α particle z = ) and Z is the charge of the nucleus (for Au Z = 79), E kin is the kinetic energy of the projectile (for 41 Am the α particle has an energy of MeV) and! is the scattering angle. The quantity d! is the differential cross section and d! is the solid angle. The geometric d" interpretation of the cross section and solid angle are shown in Figure cross section = are of ring of radius b and width db R d! b! d! Particles hitting the ring between b and b+db are scattered by an angle between and Solid angle of the entire ring :!! + d! They are scattered into a larger ring on a sphere with the scattering nucleus in its center! Rsin(")Rd" d! = =! sin(")d" solid angle of R small area: Figure : Geometry of the cross section and the solid angle d! = d!rsin(")rd" = sin(")d"d! R The cross section given in equation (1.1) is for one nucleus only. In order to calculate the rate at which particles are scattered at a certain angle one needs to

3 ! N know the flux of the incoming particles j =! inc $ " # A % &, the number of nuclei in the target per unit area and finally one needs to determine the solid angle of the detector. The number of target nuclei per unit area is given by t T!N a Mmol where t T is the target thickness,! is the density of the target material, M mol the atomic mass and N a Avogadro s number. The solid angle for small detectors openings is defined as!" = A det R where A det is the active detector area and R is the distance between the target and the detector. The observed rate therefore is!n! = t T "N a M mol A det R ( zze ) ( 4#$ 0 ) 4E kin ( ) 1 ( ) sin 4! (1.) For a given target the observed rate is therefore of the form: C!N! = # (! "! sin 4 0 )& $ % ' ( The goal of this experiment is to check where this behavior is observed and to determine the constants C and! 0. (1.3) Experimental Procedure Your equipment consists of a vacuum chamber with a rotatable source and target mount and a semi conductor detector. The chamber is connected to a vacuum pump. As a target you use a gold foil of µm thickness. This foil is very fragile be very careful and do not touch it! There are two slits that need to be installed between the foil and the source which define the size of the target spot and determine the average flux of incoming alphas. The detector is connected to a pre- amplifier, then to an amplifier and to a multi channel analyzer (MCA) that you have encountered previously. On the cover of the vacuum chamber is a scale that indicates the angle between the beam of α particles and the detector (the angle! ). Without a target set the angle to 0. Pumping When pumping or venting the vacuum chamber you should always use the same procedure: Place the target and source combination at 0 degree. This protects the target foil from damage by the air stream in or out of the chamber The little brass valve must be closed when you turn the pump on or off

4 For evacuating: close the valve, connect the hose to the pump. Turn on the pump. Very slowly open the valve and let the air be pumped out of the chamber. You will hear the air flow and the sound of the pump change. This should take about 0 s. Now you are ready to take data For venting: close the valve. Turn off the pump. Make sure the valve is closed. Disconnect the hose from the pump. Very slowly open the valve and let the air stream back into the chamber. This should also take about 0 s to detector to source slit foil holder Notches for alignment Figure 3: Slit and target holder Notches for alignment Taking data 1. Set the MCA live time to 300s and take a spectrum without target. You should see a peak, corresponding to the α particles, which are mono energetic. The width of the peak is due to the thickness of the source itself where the α particles loose energy and the energy resolution of the detector.. Install the gold target with the 1mm slit (see figure Figure 3). Make sure that the notches fit into their counter parts in the target holder. The large circle needs to face the detector and the slit faces the source. 3. Close the vacuum chamber, make sure the target position is at 0 degrees and pump down. 4. Take another spectrum. Note how the peak has shifted. This is due to the energy loss of the α particles in the target. 5. Set the live time to 600s (Aquire! MCB Properties! Presets) and take a spectrum at 0, 15, 10, 0, - 10, - 15, and - 0 degrees. Take also spectra at - 5 and 5 degrees with a live time of 00s 6. Set the live time to 100s for - 30 degrees and 1800s for - 40 degrees Remember : save all the spectra as SPE (ASCII) files. In that way you can analyze them later using the LabTools package.

5 Figure 4 shows an example spectrum with the gold foil at 0 degrees. Analysis Figure 4: Au spectrum at 0 degrees Determine the count rates (counts/time) for each angle. In order to check if you observe indeed Rutherford scattering calculate the logarithm of the count rate (and its error) and plot this versus the logarithm of sin(! / ). You should see a linear relation ship. Make sure you take the absolute value of!. You will most likely see that the rates left and right for the same angle are different. This is due to a possible offset in your angle measurement. Try to add or subtract! o and see if the results improves. Determine above which angle you probably see a linear relationship. For those angles fit a line and determine the slope. Does is agree with the behavior of Rutherford scattering? In order to accurately determine the angle offset you will determine the coefficients in equation (1.3), namely C and! 0, via a non- linear fit of the experimental count rates. Then make a semi- log plot of the count rate as a function of! and plot the fitted curve. Discuss your observations and results. Analysis Hints How to sum bins in a histogram For each spectrum add the counts in the peak. As this is a simple spectrum with only one peak, you can basically just add all channels (or bins) above a certain value. For the example in Figure 4, you could add the channels between 400 and Assuming the spectrum is called sp when you load it, you get this sum with the command : C, dc = sp.sum(400, 1000) # sum the channels between 400 and 1000

6 C, dc = sp.sum(00) # sum all channels above 00 Here C is the sum and dc is the uncertainty in the sum. How to get the live time of a spectrum The live time is stored in the title of the spectrum. The function below allows you to extract the number from the title. # get the live time from a spectrum def get_time(sp): tt = float(sp.title.split('=')[1].split('s')[0]) return tt # Put this in your analysis script and you can get the time by doing: t = get_time(sp) R = C/t dr = dc/t # get the time # calculate the rate # calculate the error in the rate How to do the non- linear fit In order to determine the parameters of the angular distribution you need to define the function and its parameters. This is done as follows (please check the LabTools documentation for more explanations): C = B.Parameter(10., 'C') # define the parameter C t0 = B.Parameter(0., 'theta_0') # define parameter for! 0 def S(x): # define the function return C()/B.np.sin(0.5*(x - t0()) )**4 With these definitions you are ready to carry out the fit: sfit = B.genfit( S, [C, t0], \ x = theta_r,\ y = R,\ y_err = dr) Where the fit results are stored in sfit, theta_r is the scattering angle in radians, R the experimental rates and dr the uncertainties. Make sure that these arrays contain only those values that you want to use in the fit. How to do a semi- log plot of data and fit First plot the data as a semi- log plot: B.plot_exp(theta_r, R, dr, logy=true)

7 Then plot the fit: B.plot_line(sfit.xpl, sfit.ypl, color = 'g') B.pl.show() Make sure that theta and sfit.xpl have the same units

Atomic and Nuclear Physics

Atomic and Nuclear Physics Atomic and Nuclear Physics Nuclear physics Rutherford scattering LD Physics Leaflets P6.5.2.1 Rutherford scattering: measuring the scattering rate as a function of the scattering angle and the atomic number

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

Scintillation Detector

Scintillation Detector Scintillation Detector Introduction The detection of ionizing radiation by the scintillation light produced in certain materials is one of the oldest techniques on record. In Geiger and Marsden s famous

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

Relativistic Electrons

Relativistic Electrons Relativistic Electrons Physics 300 1 Introduction In this experiment you will make independent measurements of the momentum and kinetic energy of electrons emitted from a β source. You will use these data

More information

Rutherford experiment with MCA

Rutherford experiment with MCA Rutherford experiment with MCA LEP Related topics Scattering, angle of scattering, impact parameter, central force, Coulomb field, Coulomb forces, Rutherford atomic model, identity of atomic number and

More information

PHY 192 Compton Effect Spring

PHY 192 Compton Effect Spring PHY 192 Compton Effect Spring 2010 1 The Compton Effect Introduction In this experiment we will study two aspects of the interaction of photons with electrons. The first of these is the Compton effect

More information

2/28/2016 ATOMS) ATOMS. Physics 2D. PHYS 342 Modern Physics Atom I: Rutherford Model and Bohr Model

2/28/2016 ATOMS) ATOMS. Physics 2D. PHYS 342 Modern Physics Atom I: Rutherford Model and Bohr Model PHYS 342 Modern Physics Atom I: Rutherford Model and Bohr Model Today Contents: a) Basic Properties of Atoms b) Rutherford Model and Scattering Experiments c) Bohr Model and Line Spectra Physics 2D Subfields

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

PC1144 Physics IV. Atomic Spectra

PC1144 Physics IV. Atomic Spectra PC1144 Physics IV Atomic Spectra 1 Objectives Investigate how well the visible light wavelengths of hydrogen predicted by the Bohr theory agree with experimental values. Determine an experimental value

More information

Read Sections 3.4 and 3.5 before viewing the slide show.

Read Sections 3.4 and 3.5 before viewing the slide show. Read Sections 3.4 and 3.5 before viewing the slide show. Unit 10 Development of the Structure of the Atom Rutherford s Gold Foil Experiment (3.4) Scattering simulation Status in Early 1900 s Atoms are

More information

Energy loss of alpha particles - Prelab questions

Energy loss of alpha particles - Prelab questions Energy loss of alpha particles - Prelab questions 1. Write down the decay path from 226 Ra to 206 Pb. Show the intermediate nuclides and the nuclear reactions which cause each transformation (α/β ± decay).

More information

PHYS 3313 Section 001 Lecture #13

PHYS 3313 Section 001 Lecture #13 PHYS 3313 Section 001 Lecture #13 Wednesday, March 1, 2017 Rutherford Scattering Experiment and Rutherford Atomic Model The Classic Atomic Model Bohr Radius Bohr s Hydrogen Model and Its Limitations Characteristic

More information

MASS ATTENUATION COEFFICIENT OF LEAD

MASS ATTENUATION COEFFICIENT OF LEAD OBJECTIVE MASS ATTENUATION COEFFICIENT OF LEAD The objective of this experiment is to measure the mass attenuation coefficient of lead by manipulating Beer-Lambert s law of attenuation. INTRODUCTION Background

More information

Experiment Radioactive Decay of 220 Rn and 232 Th Physics 2150 Experiment No. 10 University of Colorado

Experiment Radioactive Decay of 220 Rn and 232 Th Physics 2150 Experiment No. 10 University of Colorado Experiment 10 1 Introduction Radioactive Decay of 220 Rn and 232 Th Physics 2150 Experiment No. 10 University of Colorado Some radioactive isotopes formed billions of years ago have half- lives so long

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

Radioactive Decay of 220 Rn and 232 Th Physics 2150 Experiment No. 10 University of Colorado

Radioactive Decay of 220 Rn and 232 Th Physics 2150 Experiment No. 10 University of Colorado Experiment 10 1 Introduction Radioactive Decay of 220 Rn and 232 Th Physics 2150 Experiment No. 10 University of Colorado Some radioactive isotopes formed billions of years ago have half-lives so long

More information

Overview: In this experiment we will study the decay of a radioactive nucleus, Cesium. Figure 1: The Decay Modes of Cesium 137

Overview: In this experiment we will study the decay of a radioactive nucleus, Cesium. Figure 1: The Decay Modes of Cesium 137 Radioactivity (Part I and Part II) Objectives: To measure the absorption of beta and gamma rays To understand the concept of half life and to measure the half life of Ba 137* Apparatus: Radioactive source,

More information

Advanced lab course for Bachelor s students

Advanced lab course for Bachelor s students Advanced lab course for Bachelor s students Versuch T2 Gamma spectroscopy and Compton scattering February 2018 Prerequisites Interactions of photons and matter Working principle and usage of scintillation

More information

BETA-RAY SPECTROMETER

BETA-RAY SPECTROMETER 14 Sep 07 β-ray.1 BETA-RAY SPECTROMETER In this experiment, a 180, constant-radius magnetic spectrometer consisting of an electromagnet with a Geiger-Muller detector, will be used to detect and analyze

More information

Overview: In this experiment we study the decay of a radioactive nucleus, Cesium 137. Figure 1: The Decay Modes of Cesium 137

Overview: In this experiment we study the decay of a radioactive nucleus, Cesium 137. Figure 1: The Decay Modes of Cesium 137 Radioactivity (Part I and Part II) 7-MAC Objectives: To measure the absorption of beta and gamma rays To understand the concept of half life and to measure the half life of Ba 137* Apparatus: Radioactive

More information

SCINTILLATION DETECTORS & GAMMA SPECTROSCOPY: AN INTRODUCTION

SCINTILLATION DETECTORS & GAMMA SPECTROSCOPY: AN INTRODUCTION SCINTILLATION DETECTORS & GAMMA SPECTROSCOPY: AN INTRODUCTION OBJECTIVE The primary objective of this experiment is to use an NaI(Tl) detector, photomultiplier tube and multichannel analyzer software system

More information

Práctica de laboratorio número 6: Non-Rutherford scattering near the MeV 12 C(p,p) 12 C resonance

Práctica de laboratorio número 6: Non-Rutherford scattering near the MeV 12 C(p,p) 12 C resonance Práctica de laboratorio número 6: Non-Rutherford scattering near the 1.734 MeV 12 C(p,p) 12 C resonance 1) Scope In this experiment, the yield of protons backscattered from a thin gold foil deposited over

More information

Lab 5. Current Balance

Lab 5. Current Balance Lab 5. Current Balance Goals To explore and verify the right-hand rule governing the force on a current-carrying wire immersed in a magnetic field. To determine how the force on a current-carrying wire

More information

THE COMPTON EFFECT Last Revised: January 5, 2007

THE COMPTON EFFECT Last Revised: January 5, 2007 B2-1 THE COMPTON EFFECT Last Revised: January 5, 2007 QUESTION TO BE INVESTIGATED: How does the energy of a scattered photon change after an interaction with an electron? INTRODUCTION: When a photon is

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

Modern Physics Laboratory MP2 Blackbody Radiation

Modern Physics Laboratory MP2 Blackbody Radiation Purpose MP2 Blackbody Radiation In this experiment, you will investigate the spectrum of the blackbody radiation and its dependence on the temperature of the body. Equipment and components Tungsten light

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

ATOMIC SPECTRA. Objective:

ATOMIC SPECTRA. Objective: 1 ATOMIC SPECTRA Objective: To measure the wavelengths of visible light emitted by atomic hydrogen and verify the measured wavelengths against those predicted by quantum theory. To identify an unknown

More information

RADIOACTIVITY MATERIALS: PURPOSE: LEARNING OBJECTIVES: DISCUSSION:

RADIOACTIVITY MATERIALS: PURPOSE: LEARNING OBJECTIVES: DISCUSSION: RADIOACTIVITY This laboratory experiment was largely adapted from an experiment from the United States Naval Academy Chemistry Department MATERIALS: (total amounts per lab) small bottle of KCl; isogenerator

More information

Manual for deflection of beta particles

Manual for deflection of beta particles Manual for 5141.05 deflection of beta particles 11.01.11 Ae 5141.05 Figure 1 The apparatus is an accessory for the bench for experiments in radioactivity (5141.00) to be placed on the bench instead of

More information

Atomic and nuclear physics

Atomic and nuclear physics Atomic and nuclear physics X-ray physics Attenuation of x-rays LEYBOLD Physics Leaflets P6.3.2.2 Investigating the wavelength dependency of the coefficient of attenuation Objects of the experiment To measure

More information

The Configuration of the Atom: Rutherford s Model

The Configuration of the Atom: Rutherford s Model CHAPTR 2 The Configuration of the Atom: Rutherford s Model Problem 2.2. (a) When α particles with kinetic energy of 5.00 MeV are scattered at 90 by gold nuclei, what is the impact parameter? (b) If the

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

COMPTON SCATTERING OF GAMMA RAYS

COMPTON SCATTERING OF GAMMA RAYS COMPTON SCATTERING OF GAMMA RAYS v2.7 Last revised: R. A. Schumacher, January 2017 I. INTRODUCTION Compton scattering is the name given to the scattering of high-energy gamma rays from electrons. The gamma

More information

Experimental Physics I & II "Junior Lab" Fall Spring 2008

Experimental Physics I & II Junior Lab Fall Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 8.13-14 Experimental Physics I & II "Junior Lab" Fall 2007 - Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Fall 2014 Mott Target Replacement and Ladder Position Re- Calibration JLAB- TN Joe Grames. September 17, 2014

Fall 2014 Mott Target Replacement and Ladder Position Re- Calibration JLAB- TN Joe Grames. September 17, 2014 Fall 2014 Mott Target Replacement and Ladder Position Re- Calibration JLAB- TN- 14-026 Joe Grames September 17, 2014 Abstract Target foils of gold, silver and copper used in the Spring 2014 re- commissioning

More information

PHY492: Nuclear & Particle Physics. Lecture 3 Homework 1 Nuclear Phenomenology

PHY492: Nuclear & Particle Physics. Lecture 3 Homework 1 Nuclear Phenomenology PHY49: Nuclear & Particle Physics Lecture 3 Homework 1 Nuclear Phenomenology Measuring cross sections in thin targets beam particles/s n beam m T = ρts mass of target n moles = m T A n nuclei = n moles

More information

Atomic and nuclear physics

Atomic and nuclear physics Atomic and nuclear physics X-ray physics Physics of the atomic shell LEYBOLD Physics Leaflets Moseley s law and determination of the Rydberg constant P6.3.3.6 Objects of the experiment Measuring the K-absorption

More information

BETA DECAY. Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706

BETA DECAY. Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706 (revised 4/21/03) BETA DECAY Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706 Abstract The beta decay spectrum of Cs 137 is measured using a magnetic spectrometer and a

More information

(a) (i) State the proton number and the nucleon number of X.

(a) (i) State the proton number and the nucleon number of X. PhysicsAndMathsTutor.com 1 1. Nuclei of 218 84Po decay by the emission of an particle to form a stable isotope of an element X. You may assume that no emission accompanies the decay. (a) (i) State the

More information

Quantitative Assessment of Scattering Contributions in MeV-Industrial X-ray Computed Tomography

Quantitative Assessment of Scattering Contributions in MeV-Industrial X-ray Computed Tomography 11th European Conference on Non-Destructive Testing (ECNDT 2014), October 6-10, 2014, Prague, Czech Republic More Info at Open Access Database www.ndt.net/?id=16530 Quantitative Assessment of Scattering

More information

EQUIPMENT Beta spectrometer, vacuum pump, Cs-137 source, Geiger-Muller (G-M) tube, scalar

EQUIPMENT Beta spectrometer, vacuum pump, Cs-137 source, Geiger-Muller (G-M) tube, scalar Modern Physics Laboratory Beta Spectroscopy Experiment In this experiment, electrons emitted as a result of the radioactive beta decay of Cs-137 are measured as a function of their momentum by deflecting

More information

BETA DECAY. Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706

BETA DECAY. Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706 (revised 4/27/01) BETA DECAY Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706 Abstract The beta decay spectrum of Cs 137 is measured using a magnetic spectrometer and a

More information

A Study of Radioactivity and Determination of Half-Life

A Study of Radioactivity and Determination of Half-Life A Study of Radioactivity and Determination of Half-Life Purpose: To examine different types of radioactivity and their properties, and measure the half-life of a radioisotope Introduction A radioactive

More information

Rutherford Backscattering Spectrometry

Rutherford Backscattering Spectrometry Rutherford Backscattering Spectrometry EMSE-515 Fall 2005 F. Ernst 1 Bohr s Model of an Atom existence of central core established by single collision, large-angle scattering of alpha particles ( 4 He

More information

Lab 4: Projectile Motion

Lab 4: Projectile Motion 59 Name Date Partners OVEVIEW Lab 4: Projectile Motion We learn in our study of kinematics that two-dimensional motion is a straightforward extension of one-dimensional motion. Projectile motion under

More information

Phys 243 Lab 7: Radioactive Half-life

Phys 243 Lab 7: Radioactive Half-life Phys 243 Lab 7: Radioactive Half-life Dr. Robert MacDonald The King s University College Winter 2013 Abstract In today s lab you ll be measuring the half-life of barium-137, a radioactive isotope of barium.

More information

13.2 NUCLEAR PHYSICS HW/Study Packet

13.2 NUCLEAR PHYSICS HW/Study Packet 13.2 NUCLEAR PHYSICS HW/Study Packet Required: READ Tsokos, pp 407-412 SL/HL Supplemental: Cutnell and Johnson, pp 652-652, 970-973 DO Questions pp 412-414 #1,3,11 REMEMBER TO. Work through all of the

More information

Higher Physics. Particles and Waves

Higher Physics. Particles and Waves Perth Academy Physics Department Higher Physics Particles and Waves Particles and Waves Homework Standard Model 1 Electric Fields and Potential Difference 2 Radioactivity 3 Fusion & Fission 4 The Photoelectric

More information

CLASS 12th. Modern Physics-II

CLASS 12th. Modern Physics-II CLASS 12th Modern Physics-II 1. Thomson s Atom Model From the study of discharge of electricity through gases, it became clear that an atom consists of positive and negative charges. As the atom is electrically

More information

RANGE OF ALPHAS. Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706

RANGE OF ALPHAS. Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706 (revised 10/20/10) RANGE OF ALPHAS Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706 Abstract A silicon solid state detector is used to measure the energy of alphas which

More information

Higher -o-o-o- Past Paper questions o-o-o- 3.6 Radiation

Higher -o-o-o- Past Paper questions o-o-o- 3.6 Radiation Higher -o-o-o- Past Paper questions 1991-2001 -o-o-o- 3.6 Radiation 1992 Q35 A typical reaction produced in the core of a nuclear reactor can be described by the following equation: (a) State the name

More information

Physics 30 Modern Physics Unit: Atomic Basics

Physics 30 Modern Physics Unit: Atomic Basics Physics 30 Modern Physics Unit: Atomic Basics Models of the Atom The Greeks believed that if you kept dividing matter into smaller and smaller pieces, you would eventually come to a bit of matter that

More information

Electron Diffraction

Electron Diffraction Electron iffraction o moving electrons display wave nature? To answer this question you will direct a beam of electrons through a thin layer of carbon and analyze the resulting pattern. Theory Louis de

More information

RANGE OF ALPHA PARTICLES

RANGE OF ALPHA PARTICLES 23 Sep 08 Alpha.1 RANGE OF ALPHA PARTICLES The range of a charged particle in an absorber provides a measure of its energy. In this experiment, the range in air, and energy, of the alpha particles emitted

More information

EXPERIMENT FOUR - RADIOACTIVITY This experiment has been largely adapted from an experiment from the United States Naval Academy, Annapolis MD

EXPERIMENT FOUR - RADIOACTIVITY This experiment has been largely adapted from an experiment from the United States Naval Academy, Annapolis MD EXPERIMENT FOUR - RADIOACTIVITY This experiment has been largely adapted from an experiment from the United States Naval Academy, Annapolis MD MATERIALS: (total amounts per lab) small bottle of KCl; isogenerator

More information

Modern Physics Laboratory (Physics 6180/7180)

Modern Physics Laboratory (Physics 6180/7180) Alpha Particle Spectroscopy Week of Jan. 18, 2010 Modern Physics Laboratory (Physics 6180/7180) The University of Toledo Instructor: Randy Ellingson Alpha Particle Spectroscopy Alpha particle source alpha

More information

Modern Physics Laboratory Beta Spectroscopy Experiment

Modern Physics Laboratory Beta Spectroscopy Experiment Modern Physics Laboratory Beta Spectroscopy Experiment Josh Diamond and John Cummings Fall 2009 Abstract In this experiment, electrons emitted as a result of the radioactive beta decay of 137 55 Cs are

More information

Figure 1. Decay Scheme for 60Co

Figure 1. Decay Scheme for 60Co Department of Physics The University of Hong Kong PHYS3851 Atomic and Nuclear Physics PHYS3851- Laboratory Manual A. AIMS 1. To learn the coincidence technique to study the gamma decay of 60 Co by using

More information

Nuclear Physics and Astrophysics

Nuclear Physics and Astrophysics Nuclear Physics and Astrophysics PHY-30 Dr. E. Rizvi Lecture 4 - Detectors Binding Energy Nuclear mass MN less than sum of nucleon masses Shows nucleus is a bound (lower energy) state for this configuration

More information

1 The Development of Atomic Theory

1 The Development of Atomic Theory CHAPTER 4 1 The Development of Atomic Theory SECTION Atoms KEY IDEAS As you read this section, keep these questions in mind: What scientists helped to develop atomic theory? What part of atoms did Thomson

More information

Experiment 6 1. The Compton Effect Physics 2150 Experiment No. 6 University of Colorado

Experiment 6 1. The Compton Effect Physics 2150 Experiment No. 6 University of Colorado Experiment 6 1 Introduction The Compton Effect Physics 2150 Experiment No. 6 University of Colorado In some situations, electromagnetic waves can act like particles, carrying energy and momentum, which

More information

Name Date: Course number: MAKE SURE TA & TI STAMPS EVERY PAGE BEFORE YOU START. Grade: EXPERIMENT 4

Name Date: Course number: MAKE SURE TA & TI STAMPS EVERY PAGE BEFORE YOU START. Grade: EXPERIMENT 4 Laboratory Section: Last Revised on June 18, 2018 Partners Names: Grade: EXPERIMENT 4 Moment of Inertia & Oscillations 0 Pre-Laboratory Work [20 pts] 1 a) In Section 31, describe briefly the steps you

More information

Bi β + Po Bismuth-214 is radioactive. It has a half-life of 20 minutes. (a) The nuclide notation for bismuth-214 is Bi.

Bi β + Po Bismuth-214 is radioactive. It has a half-life of 20 minutes. (a) The nuclide notation for bismuth-214 is Bi. 1 Bismuth-214 is radioactive. It has a half-life of 20 minutes. (a) The nuclide notation for bismuth-214 is Bi. State the composition of the nucleus of bismuth-214. [2] (b) Bismuth-214 decays by β-decay

More information

THE MODERN VIEW OF ATOMIC STRUCTURE

THE MODERN VIEW OF ATOMIC STRUCTURE 44 CHAPTER 2 Atoms, Molecules, and Ions GO FIGURE What is the charge on the particles that form the beam? Experiment Interpretation Incoming a particles Beam of a particles Source of a particles Nucleus

More information

Detection and measurement of gamma-radiation by gammaspectroscopy

Detection and measurement of gamma-radiation by gammaspectroscopy Detection and measurement of gamma-radiation by gammaspectroscopy Gamma-radiation is electromagnetic radiation having speed equal to the light in vacuum. As reaching a matter it interact with the different

More information

Rutherford Scattering

Rutherford Scattering Rutherford Scattering MIT Department of Physics This is an experiment which studies scattering alpha particles on atomic nuclei. You will shoot alpha particles, emitted by 241 Am, at thin metal foils and

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

Particles and Waves Final Revision Exam Questions Part 1

Particles and Waves Final Revision Exam Questions Part 1 Particles and Waves Final Revision Exam Questions Part 1 Cover image: cutaway diagram of CERN, CERN Version 2013 P&W: Exam Questions Part 1 Version 2013 Contents Section 1: The Standard Model 1 Section

More information

This paper should be understood as an extended version of a talk given at the

This paper should be understood as an extended version of a talk given at the This paper should be understood as an extended version of a talk given at the Abstract: 1 st JINA workshop at Gull Lake, 2002. Recent experimental developments at LANL (Los Alamos, NM, USA) and CERN (Geneva,

More information

Chapter test: Probing the Heart of Matter

Chapter test: Probing the Heart of Matter PRO dditional sheet 5 Chapter test: Probing the Heart of Matter 40 marks total nswer LL the questions. Write your answers in the spaces provided in this question paper. The marks for individual questions

More information

(revised 3/11/2014) BETA DECAY. Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706

(revised 3/11/2014) BETA DECAY. Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706 (revised 3/11/2014) BETA DECAY Advanced Laboratory, Physics 407 University of Wisconsin Madison, Wisconsin 53706 Abstract The beta decay spectrum of Cs 137 is measured using a magnetic spectrometer and

More information

CfE Higher Physics. Particles and Waves

CfE Higher Physics. Particles and Waves Wallace Hall Academy CfE Higher Physics Particles and Waves Exam Questions Part 1 Cover image: cutaway diagram of CERN, CERN P&W: Exam Questions Part 1 Version 2013 Contents Section 1: The Standard Model

More information

Gamma-Ray coincidence and 60 Co angular correlation

Gamma-Ray coincidence and 60 Co angular correlation Gamma-Ray coincidence and 60 Co angular correlation With two γ-ray detectors, it is possible to determine that two g-rays are part of the same cascade by measuring the spectrum in one detector coincident

More information

Statistics of Radioactive Decay

Statistics of Radioactive Decay Statistics of Radioactive Decay Introduction The purpose of this experiment is to analyze a set of data that contains natural variability from sample to sample, but for which the probability distribution

More information

PHYS 3313 Section 001 Lecture #12

PHYS 3313 Section 001 Lecture #12 PHYS 3313 Section 001 Lecture #12 Monday, Feb. 24, 2014 Rutherford Scattering Experiment and Rutherford Atomic Model The Classic Atomic Model The Bohr Model of the Hydrogen Atom 1 Quiz 2 results Class

More information

arxiv: v1 [physics.ins-det] 11 Mar 2010

arxiv: v1 [physics.ins-det] 11 Mar 2010 Study of a Large NaI(Tl) Crystal A. Aguilar-Arevalo a, M. Aoki b, M. Blecher c, D.A. Bryman d, L. Doria a,, P. Gumplinger a, A. Hussein e, N. Ito b, S. Kettell f, L. Kurchaninov a, L. Littenberg f, C.

More information

Physics 3223 Solution to Assignment #5

Physics 3223 Solution to Assignment #5 Physics 3223 Solution to Assignment #5 October 20, 1999 6.1 From the Heisenberg uncertainty principle, x p h, we estimate that a typical kinetic energy of an electron in an atom would be K ( p)2 2m h 2

More information

Experiments #3: Dead time and nuclear counting statistics Objective: 1. Measurement of dead time 2. To investigate the statistics related to measurements with a Geiger counter: Poisson and Gaussian distribution

More information

Absorption of Gamma Rays

Absorption of Gamma Rays Introduction Absorption of Gamma Rays In this experiment, the absorption coefficient of gamma rays passing through several materials is studied. The materials will be compared to one another on their efficacy

More information

Atomic Spectra HISTORY AND THEORY

Atomic Spectra HISTORY AND THEORY Atomic Spectra HISTORY AND THEORY When atoms of a gas are excited (by high voltage, for instance) they will give off light. Each element (in fact, each isotope) gives off a characteristic atomic spectrum,

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

PHYSICS A Forces, Fields and Energy. OXFORD CAMBRIDGE AND RSA EXAMINATIONS Advanced GCE. 1 hour 30 minutes

PHYSICS A Forces, Fields and Energy. OXFORD CAMBRIDGE AND RSA EXAMINATIONS Advanced GCE. 1 hour 30 minutes OXFORD CAMBRIDGE AND RSA EXAMINATIONS Advanced GCE PHYSICS A 2824 ces, Fields and Energy Thursday 20 JANUARY 2005 Morning 1 hour 30 minutes Candidates answer on the question paper. Additional materials:

More information

Alpha-Energies of different sources with Multi Channel Analyzer

Alpha-Energies of different sources with Multi Channel Analyzer Physical Structure of Matter Radioactivity Alpha-Energies of different sources with Multi Channel Analyzer What you can learn about Decay series Radioactive equilibrium Isotopic properties Decay energy

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

Radioactivity. (b) Fig shows two samples of the same radioactive substance. The substance emits β-particles. Fig. 12.1

Radioactivity. (b) Fig shows two samples of the same radioactive substance. The substance emits β-particles. Fig. 12.1 112 (a) What is meant by radioactive decay? Radioactivity [2] (b) Fig. 12.1 shows two samples of the same radioactive substance. The substance emits β-particles. Fig. 12.1 Put a tick alongside any of the

More information

Lab 6 - Electron Charge-To-Mass Ratio

Lab 6 - Electron Charge-To-Mass Ratio Lab 6 Electron Charge-To-Mass Ratio L6-1 Name Date Partners Lab 6 - Electron Charge-To-Mass Ratio OBJECTIVES To understand how electric and magnetic fields impact an electron beam To experimentally determine

More information

Lab 5: Projectile Motion

Lab 5: Projectile Motion Lab 5 Projectile Motion 47 Name Date Partners Lab 5: Projectile Motion OVERVIEW We learn in our study of kinematics that two-dimensional motion is a straightforward application of onedimensional motion.

More information

Lab 5 - ELECTRON CHARGE-TO-MASS RATIO

Lab 5 - ELECTRON CHARGE-TO-MASS RATIO 81 Name Date Partners Lab 5 - ELECTRON CHARGE-TO-MASS RATIO OBJECTIVES To understand how electric and magnetic fields impact an electron beam To experimentally determine the electron charge-to-mass ratio

More information

Radiation (Particle) Detection and Measurement

Radiation (Particle) Detection and Measurement Radiation (Particle) Detection and Measurement Radiation detection implies that the radiation interacts (e.g. leaves at least part of its energy) in the material. A specific material is chosen, because

More information

Morning FOR EXAMINER S USE WRITE YOUR ANSWER TO EACH QUESTION IN THE SPACE PROVIDED. ANSWERS WRITTEN ELSEWHERE WILL NOT BE MARKED.

Morning FOR EXAMINER S USE WRITE YOUR ANSWER TO EACH QUESTION IN THE SPACE PROVIDED. ANSWERS WRITTEN ELSEWHERE WILL NOT BE MARKED. ADVANCED GCE UNIT 2824 PHYSICS A Forces, Fields and Energy MONDAY 22 JANUARY 2007 Morning Additional materials: Electronic Calculator Time: 1 hour 30 minutes INSTRUCTIONS TO CANDIDATES Write your name,

More information

Range of Alpha Particles in Air

Range of Alpha Particles in Air Range of Alpha Particles in Air Oliver Kelly December 6, 2000 Abstract A fixed scintillation counter was used to detect and hence allow measurement of the range in air at S.T.P. of 4.88MeV α particles

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

hν' Φ e - Gamma spectroscopy - Prelab questions 1. What characteristics distinguish x-rays from gamma rays? Is either more intrinsically dangerous?

hν' Φ e - Gamma spectroscopy - Prelab questions 1. What characteristics distinguish x-rays from gamma rays? Is either more intrinsically dangerous? Gamma spectroscopy - Prelab questions 1. What characteristics distinguish x-rays from gamma rays? Is either more intrinsically dangerous? 2. Briefly discuss dead time in a detector. What factors are important

More information

Alpha-energies of different sources with Multi Channel Analyzer (Item No.: P )

Alpha-energies of different sources with Multi Channel Analyzer (Item No.: P ) Alpha-energies of different sources with Multi Channel Analyzer (Item No.: P2522015) Curricular Relevance Area of Expertise: ILIAS Education Level: Physik Topic: Hochschule Subtopic: Moderne Physik Experiment:

More information

Safety Co-ordinator : Patrick Walden, TRIUMF, ext : 7340

Safety Co-ordinator : Patrick Walden, TRIUMF, ext : 7340 Safety Report for experiment E1104 : Beamtime Schedule 113 16-31 July 2008 Study of halo effects in the Scattering of 11 Li with heavy targets at energies around the Coulomb Barrier Experiment Leaders

More information

ORTEC AN34 Experiment 10 Compton Scattering

ORTEC AN34 Experiment 10 Compton Scattering EQUIPMENT NEEDED FROM ORTEC 113 Preamplifier (2 ea.) TRUMP-PCI-2K MCA System including suitable PC operating Windows 98/2000/XP (other ORTEC MCAs may be used) 266 Photomultiplier Tube Base (2 ea.) 4001A/4002D

More information

Lab 6 - ELECTRON CHARGE-TO-MASS RATIO

Lab 6 - ELECTRON CHARGE-TO-MASS RATIO 101 Name Date Partners OBJECTIVES OVERVIEW Lab 6 - ELECTRON CHARGE-TO-MASS RATIO To understand how electric and magnetic fields impact an electron beam To experimentally determine the electron charge-to-mass

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Advanced Level

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Advanced Level XtremePapers.com UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Advanced Level *0305126326* PHYSICS 9702/41 Paper 4 A2 Structured Questions October/November 2013 2

More information