Lab #1: Photon counting with a PM tube statistics of light James. R. Graham, UC Berkeley

Size: px
Start display at page:

Download "Lab #1: Photon counting with a PM tube statistics of light James. R. Graham, UC Berkeley"

Transcription

1 Lab #: Photon counting with a PM tube statistics of light James. R. Graham, UC Berkeley Your report is due on 2008, September 6 at 5:59:59PM PDT. NO EXTENSIONS! Overview. Schedule This is a two-week lab 9/2 & 9/9. Your lab report is due on 9/6. For show-and-tell on 9/9 you should have progressed at least to step 7 (see below)..2 Goals Explore the fundamental physical limitations on the detection of light. Investigate how precisely brightness can be specified, and what determines that precision. Ultimately, what are the statistical properties of photons?.3 Reading assignments (available on line) Unix tutorial IDL tutorial TeX tutorial Taylor Chapters & 2.4 Key steps You will execute four primary steps in this lab:. Collect data from the photometer experiment and use IDL to make a plot of the counts per sample versus time. 2. Plot histograms of sets of samples from the photometer. 3. Compute the mean and standard deviation for your samples and investigate the variability of the count rate. 4. Compare the observed histograms with the theoretical Poisson probability distribution function.

2 2 Getting started: collecting data from the photomultiplier tube This lab activity is based on a light detector that can record the arrival of individual photons. The detector, known as a photomultiplier PMT, is very sensitive, and must be treated with care. Before you modify anything associated with the PMT make sure that you have read and understood the PMT web page: Do not expose the PMT to direct room light! Do not expose to light so that the count rate is > MHz. To figure the count rate multiply the counts per sample by the sample rate.e.g., 000 counts per sample when the sample rate is khz corresponds to a,000,000 counts per second or MHz. The first step is to acquire a time sequence of digitized data and save the data as a file. Log into one of the sun workstations. Make a Unix sub-directory (using mkdir) for your project and type the following at the Unix prompt: % echo counter nsamples=00 rate=000 fname=c dat sendpc (Note: % indicates the Unix prompt do not type an extra %). This cryptic command takes 00 samples of data from the photo-multiplier tube at a rate of 000 Hz, and puts the data in a file called c dat. A cartoon of the counting process is shown in Figure. Δt time Sample n Sample n+ Sample n+2 Figure : A cartoon of the samples generated by the counter. The bin width is constant, and for an interval Δt = /rate photon counts (smiley faces) are accumulated. In this example the sequence of counts is 3,, 2, 4. Only four samples from a longer sequence are illustrated. You should get a message indicating success. Since you asked for 00 samples, this file should contain 00 lines. Figure out for this example how long is the counter active for? What would the answer be if you had chosen: nsamples=000 rate=00? 2

3 A rate of 000 Hz means that for each sample the computer accumulates counts from the PMT for /000 of a second ( ms). Typically, at this rate you should get few counts per sample. Play around with the sample rate and convince yourself that the length of the sample is inversely proportional to the sample rate. If the rate is significantly higher or lower than this then ask an instructor for help. The maximum sample rate is 5000 Hz. Note that not all sample rates are supported by the hardware. If you ask for a counter rate that is not supported then the counter program will choose the closest one available. 3 Reading data The next challenge is to read in the data file into IDL. View your file by asking the computer to print out the contents, e.g., % cat c dat Notice that the file comprises a single column of numbers. Each number corresponds to the number of counts in each sample. There is a handy IDL program that reads a file into computer memory and labels it with an IDL variable name, in this example it is called "mydata": readcol, 'c dat', mydata Notice that the file name must be enclosed in single quotes. IDL names between single quotes are called strings. 4 Plotting data Once you have the data in an IDL variable you can plot it using the IDL command plot, mydata To make a useful graph you need to plot your data as a function of time. Label the x- (i.e., time) and y-axes (counts). Make sure that your labels include units. A plot title is also helpful and can be used to denote the sample rate. Invoke IDL help by typing a question mark at the IDL command line. Look up "PLOT" in the index and figure out how to add a title and axes to your plot. 3

4 Some useful on-line resources are To make your life easier we have provided a handy IDL function that calls that sendpc program for you so that you do not have to do so much typing. Here s an example: t = savephotons(nsamples=00, rate=00) Data saved in file: photon txt Note that savephotons makes up the file name for you if you do not specify it. This program is what is known as a function in IDL, i.e. a routine with arguments (the values of nsamples and rate) and a return value. In this case the return value, t, lets you know if the program worked. print,t The IDL code for savephotons can be found in /home/global/ay2/idl/pc/savephotons.pro So a set of IDL instruction to collect some data and plot them would be: t = savephotons(nsamples=00, rate=00) Data saved in file: photon txt readcol,'photon txt',data % READCOL: Format keyword not supplied - All columns assumed floating point % READCOL: 00 valid lines read plot,data 5 Statistics making a histogram First, be sure to review and understand what a histogram (see Taylor) Calculate the mean and standard deviation of the count rate for a set of data collected using savephotons. The IDL function total will turn out to be very useful for computing statistical quantities. Be sure to look up total in the IDL help. Bin the data and make a histogram of the counts. Binning means sorting the data into unique categories, and counting the number of occurrences of those categories. Use my example program in the statistics hand out to help you solve this programming problem. 4

5 Does the histogram plot that that you have made really reflect that data that you collected? Carefully compare the list of counts in the data file and the plot. Do a reality check on a data set where you can rapidly compute the histogram with pencil and paper. Once you can plot histograms with confidence, repeat the experiment, say, six times and compare the results of your experiments. Does the histogram change? Do you always get the same mean count rate? Become adept at inspecting the histogram plot and guessing what the mean and standard deviations are. Calculate the mean and standard deviation of the six count rates you just measured. Be sure to use a unique file name for each sequence of data, because you may want to go back and look at your data files again. If you do not change the name the file will be overwritten. To examine the data in IDL it will be helpful to understand how to use "for" loops. A quick and sophisticated way to approach repetitive tasks involves writing the entire sequence of data acquisition in IDL using for loops. The simplest IDL FOR loop can be executed at the command line. Try this: for i=0,4 do print,i Suppose we want to take a sequence of data sets where the rate increased by steps of a factor of two, then the following would be useful: for i=0,4 do print,2^i This is perhaps the most important programming lesson here. Always test your program on a problem where you know the answer. For example test your histogram program with x =[0,0,0,,,] and x=[0,,2,3,4,5,6]. 5

6 If you need multple instructions within the loop, then you need to write a little program. Create a new file with emacs called test.pro ; Testing savephotons with a for loop. Each time savephotons is called ; a unique file name is used. Written by JRG 8/25/2008 ; mynsamp = 00 ; Define the number of samples myrate = 000 ; Define the sample rate (in Hz) nrep = 4 ; Define the number of repitions for i=0,nrep- do begin ; construct the file name myfilename = 'test_' + $ string(i,format='(i03)') + '_' + $ string(mynsamp,format='(i03)') + '_' + $ string(myrate,format='(i04)') + '.dat' ; get the data t = savephotons(nsamp=mynsamp, rate = myrate, file = myfilename) ; print out some useful information print,'i= ',i,' file = ',myfilename,' status = ',t print,' ' endfor end Note that the semicolon is a comment character everything after a ; is ignored. To execute this program in IDL, all you need to do is type.run test % Compiled module: $MAIN$. Data saved in file: test_000_00_000.dat i= 0 file = test_000_00_000.dat status = Data saved in file: test_00_00_000.dat i= file = test_00_00_000.dat status = Data saved in file: test_002_00_000.dat i= 2 file = test_002_00_000.dat status = Data saved in file: test_003_00_000.dat i= 3 file = test_003_00_000.dat status = Notice that the file name is printed out, and each time that savephotons is invoked the new file name is used. 6

7 If you are plotting multiple sequences of data investigate what happens when you set the IDL plotting variable!p.multi = [0,2,3] What does this do? To get back to normal plotting set!p.multi=0 Now repeat with a bigger sample of data, e.g., increase the number of samples by a factor of 4, but keep the sample rate the same as before. Again, take six sets of data and repeat the exercise of calculating the mean and standard deviation for each longer set of data. Calculate the means and standard deviations of the six count rates you just measured. What do you notice about the mean count rate and the standard deviation for these sequences? 6 Mean and standard deviation Let's try and get to the root of these variations. First, let s explore the relation between the mean number of counts and the standard deviation. Take a sequence of data with increasingly long (i.e. slow) sample times. For this part of the experiment you need to know that the shortest sample is 200 µs (5000 Hz) and that the duration of the sample can only increase in 00 µs increments. Thus the allowable rates are 0000 Hz/n, where is an integer n = 2, 3, 4 A handy aspect of savephotons is that you can call it with the argument dt, which is the sample duration in ms, so that t = savephotons(nsamples=00, dt=0.2) t = savephotons(nsamples=00, dt=0.3) t = savephotons(nsamples=00, dt=0.4) are all valid data requests. Calculate the mean count for each sequence and also the standard deviation. Suppose xbar and s are the means and standard deviations, use the command plot, xbar, s^2 to make a plot of the mean versus the variance (the standard deviation squared). Now over plot a line representing x=y. What does this tell you about the relation between mean and variance for counting (Poisson) statistics? 7

8 7 The Poisson distribution Plot a histogram for one of your sequences with a small count rate, e.g, 2-4 counts per sample and lots of samples, e.g., 000. Calculate the mean count rate and compare the resultant histogram with the theoretical Poisson probability distribution, P( x,µ ) = µ x exp ( µ x! ), where µ is the mean. Use IDL's OPLOT function to compare your data and the prediction. Think about that! How do you compare a histogram and a theoretical distribution!? The Poisson distribution gives a probability. You have measured counts. Explain how to choose the correct scaling factor (or normalization) to compare the measured and theoretical distributions. Does the Poisson distribution provide a good description of the data? Now arrange so that the counts per sample is increased (be careful that the count rate does not exceed MHz). Aim for several hundred counts per sample. Plot the histogram again. What has happened to the shape of the histogram? Calculate the mean and standard deviation and over-plot the corresponding Gaussian probability distribution, P( x,µ,σ ) = 2π σ exp x µ 2 σ 2. Is a Gaussian curve a good approximation to the Poisson distribution? Under what conditions is the Gaussian probability distribution a good approximation? Some notes regarding Poisson fluctuations and blackbody radiation are included in the Appendix. 8 Standard deviation of the mean The more events you count the more accurately you can measure the number of counts per sample (i.e., the count rate). To illustrate the effect take ten sets of data with a given number of samples, say 6. Choose a fixed sample rate, say, khz. For each of these ten sets calculate the mean. Due to statistical variations the ten means will be different, so also calculate the mean of the means (MOM) and the standard deviation of the means (SDOM). The MOM is the best estimate of the counts per sample and the SDOM is a measure of how precisely we know the average counts per sample. How does the SDOM vary with the number of samples in the individual sequences? Intuition suggests that if we have more samples in each of our ten measurements the SDOM will be smaller. To quantify this effect repeat with 2, 4, 8, 6, 32, 64, 28, 256, 52, 024, 2048 etc. 8

9 samples per sequence. Don't vary the sample rate, and be sure that no one changes the LED brightness while you are collecting your data! For each sample size consider the ten data sets and calculate the mean of the means (MOM) and the standard deviation of the means (SDOM). Plot the MOM and the SDOM as a function of the number of samples. Describe how the MOM and SDOM vary as the sample size increases. Based on your knowledge of Poisson statistics and error propagation predict the SDOM given the measured mean count per sample and the sample size. Use the IDL OPLOT function to compare your prediction with the data. If I want to improve the accuracy of a measurement of the mean by a factor of two, by what factor do I need to increase the number of samples? How accurate is your best estimate of the count rate, i.e., how accurate is the MOM? Is it possible to construct a light source for the photometer experiment that would not show variations in the count rate? Write up your lab report describing each of the above exercises. Show your results by including IDL plots in your report. 9

10 9 Appendix: Photon noise Why do photons exhibit Poisson fluctuations? Is the detection of photons really governed by the Poisson probability distribution? Consider the number of photons, n, in a cavity temperature T, and frequency v. As photons are emitted and absorbed by the walls the number of photons in the cavity will change. Boltzmann s law gives the probability that a state with energy E = nhv occurs, where n may take on any value 0,, 2, 3, P(n) = U exp ( nhν kt ), where h is Planck s constant, and k is Boltzmann s constant. The normalization U is found from the condition that the probability must sum to unity The average energy at frequency v is E = ( ) U = exp nhν k T. = U = n =0 EP(n) U n =0 n =0 ( ) nhν exp nhν k T hν exp hν k T ( ) We can use this result to compute the energy density of photons. Photons are spin zero particles, and therefore unlike half-integer spin particles like electrons can congregate in a cell of phase space. The number of phase cells per unit volume for photons with momenta p to p + dp is dn = 2 4πp2 dp = 8πν 2 dν, h 3 c 3 where the factor of two accounts for the two spin polarization states. Thus, the energy density of blackbody radiation at frequency v to v + dv is which is the famous Planck formula. ρ ν dν = E dn = 8πν 2 c 3 hν exp( hν k T ) dν,. 0

11 The mean number of photons is n = np(n) = U n =0 exp( hν k T ), and Hence, the variance n 2 - n 2 is n 2 = n 2 P(n) = U n =0 ( ) + ( ) exp hν k T [ exp hν k T ]. 2 ( ) ( ) exp hν k T σ 2 = [ exp hν k T ], 2 or by substituting for n we see that the variance is proportional to n σ 2 = n exp( hν k T), with a correction factor. Often the correction factor is very close to unity. For example, Figure 2 shows the correction factor an incandescent lamp (3300 K) at wavelength between 0. and 00 µm. In the UV and visible we have to a very good approximation σ 2 = n, i.e., the fluctuations are Poisson. However, at infrared and radio wavelengths the Poisson approximation is not useful. Figure 2: The Boson correction factor /[-exp(hv/kt)] versus wavelength for a temperature typical of a tungsten filament lamp. At UV and visible wavelengths the correction factor is close to unity and blackbody radiation shows Poisson fluctuations.

Lab 2: Photon Counting with a Photomultiplier Tube

Lab 2: Photon Counting with a Photomultiplier Tube Lab 2: Photon Counting with a Photomultiplier Tube 1 Introduction 1.1 Goals In this lab, you will investigate properties of light using a photomultiplier tube (PMT). You will assess the quantitative measurements

More information

The Spectrophotometer and Atomic Spectra of Hydrogen Physics 246

The Spectrophotometer and Atomic Spectra of Hydrogen Physics 246 The Spectrophotometer and Atomic Spectra of Hydrogen Physics 46 Introduction: When heated sufficiently, most elements emit light. With a spectrometer, the emitted light can be broken down into its various

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

Experiment 4 Radiation in the Visible Spectrum

Experiment 4 Radiation in the Visible Spectrum Experiment 4 Radiation in the Visible Spectrum Emission spectra can be a unique fingerprint of an atom or molecule. The photon energies and wavelengths are directly related to the allowed quantum energy

More information

Experiment 2 Random Error and Basic Statistics

Experiment 2 Random Error and Basic Statistics PHY9 Experiment 2: Random Error and Basic Statistics 8/5/2006 Page Experiment 2 Random Error and Basic Statistics Homework 2: Turn in at start of experiment. Readings: Taylor chapter 4: introduction, sections

More information

E. K. A. ADVANCED PHYSICS LABORATORY STATISTICS OF COUNTING WITH A GEIGER COUNTER ARTIFICIAL RADIOACTIVITY

E. K. A. ADVANCED PHYSICS LABORATORY STATISTICS OF COUNTING WITH A GEIGER COUNTER ARTIFICIAL RADIOACTIVITY E. K. A. ADVANCED PHYSICS LABORATORY STATISTICS OF COUNTING WITH A GEIGER COUNTER ARTIFICIAL RADIOACTIVITY 1. INTRODUCTION The Geiger Müller (GM tube) detector for ionizing particles operates on the principle

More information

Background The power radiated by a black body of temperature T, is given by the Stefan-Boltzmann Law

Background The power radiated by a black body of temperature T, is given by the Stefan-Boltzmann Law Phys316 Exploration 2: Verifying Stefan-Boltzmann Relationship Background The power radiated by a black body of temperature T, is given by the Stefan-Boltzmann Law Where A is the effective radiating area,

More information

BRIDGE CIRCUITS EXPERIMENT 5: DC AND AC BRIDGE CIRCUITS 10/2/13

BRIDGE CIRCUITS EXPERIMENT 5: DC AND AC BRIDGE CIRCUITS 10/2/13 EXPERIMENT 5: DC AND AC BRIDGE CIRCUITS 0//3 This experiment demonstrates the use of the Wheatstone Bridge for precise resistance measurements and the use of error propagation to determine the uncertainty

More information

Experiment 2 Random Error and Basic Statistics

Experiment 2 Random Error and Basic Statistics PHY191 Experiment 2: Random Error and Basic Statistics 7/12/2011 Page 1 Experiment 2 Random Error and Basic Statistics Homework 2: turn in the second week of the experiment. This is a difficult homework

More information

PLANCK S CONSTANT IN THE LIGHT OF AN INCANDESCENT LAMP

PLANCK S CONSTANT IN THE LIGHT OF AN INCANDESCENT LAMP PLANCK S CONSTANT IN THE LIGHT OF AN INCANDESCENT LAMP In 1900 Planck introduced the hypothesis that light is emitted by matter in the form of quanta of energy hν. In 1905 Einstein extended this idea proposing

More information

Nuclear Physics Lab I: Geiger-Müller Counter and Nuclear Counting Statistics

Nuclear Physics Lab I: Geiger-Müller Counter and Nuclear Counting Statistics Nuclear Physics Lab I: Geiger-Müller Counter and Nuclear Counting Statistics PART I Geiger Tube: Optimal Operating Voltage and Resolving Time Objective: To become acquainted with the operation and characteristics

More information

Chapter 1. Blackbody Radiation. Theory

Chapter 1. Blackbody Radiation. Theory Chapter 1 Blackbody Radiation Experiment objectives: explore radiation from objects at certain temperatures, commonly known as blackbody radiation ; make measurements testing the Stefan-Boltzmann law in

More information

Spectroscopy of Various Light Sources: The Interactions between Light and Matter ASTR 170B1, Spring 2017, Lab #2. 1 Introduction.

Spectroscopy of Various Light Sources: The Interactions between Light and Matter ASTR 170B1, Spring 2017, Lab #2. 1 Introduction. Spectroscopy of Various Light Sources: The Interactions between Light and Matter ASTR 170B1, Spring 2017, Lab #2 DUE IN CLASS ON Thursday Sept 28! You CAN work in a group of 2, but you need only turn in

More information

PH104 Lab 1 Light and Matter Pre-lab

PH104 Lab 1 Light and Matter Pre-lab Name: Lab Time: PH04 Lab Light and Matter Pre-lab. Goals Since this is the first lab, we don t want to try to do things that are too complex. We would like to get used to the lab room and some of the steps

More information

Mass of the electron m 0

Mass of the electron m 0 Mass of the electron m 0 1 Objective To determine the rest mass of the electron, m e, via γ-ray interactions (mainly Compton scattering and photoeffect) in a NaI scintillation detector. Based on the enclosed

More information

THERMAL RADIATION. The electromagnetic radiation emitted by a hot tungsten filament will be studied.

THERMAL RADIATION. The electromagnetic radiation emitted by a hot tungsten filament will be studied. THERMAL.1 THERMAL RADIATION The electromagnetic radiation emitted by a hot tungsten filament will be studied. Theory: The Stefan-Boltzmann Law relates the rate at which an object radiates thermal energy

More information

5 Error Propagation We start from eq , which shows the explicit dependence of g on the measured variables t and h. Thus.

5 Error Propagation We start from eq , which shows the explicit dependence of g on the measured variables t and h. Thus. 5 Error Propagation We start from eq..4., which shows the explicit dependence of g on the measured variables t and h. Thus g(t,h) = h/t eq..5. The simplest way to get the error in g from the error in t

More information

φ(ν)dν = 1. (1) We can define an average intensity over this profile, J =

φ(ν)dν = 1. (1) We can define an average intensity over this profile, J = Ask about final Saturday, December 14 (avoids day of ASTR 100 final, Andy Harris final). Decided: final is 1 PM, Dec 14. Rate Equations and Detailed Balance Blackbodies arise if the optical depth is big

More information

change in distance change in time

change in distance change in time M2.1 Lab M2. Ultrasound: Interference, Wavelength, and Velocity The purpose of this exercise is to become familiar with the properties of waves: frequency, wavelength, phase, and velocity. We use ultrasonic

More information

PHY293 Lecture #9. df hf

PHY293 Lecture #9. df hf PHY293 Lecture #9 November 13, 2017 1. Units in Atomic/Quantum Physics When dealing with very small/light objects (single protons or electrons) convenient to use commensurate units Most common unit in

More information

b) Connect the oscilloscope across the potentiometer that is on the breadboard. Your instructor will draw the circuit diagram on the board.

b) Connect the oscilloscope across the potentiometer that is on the breadboard. Your instructor will draw the circuit diagram on the board. Geiger Counter Experiments and The Statistics of Nuclear Decay Using a Geiger Mueller tube, there are a number of experiments we can do. In the classroom there are two different types of Geiger Counters:

More information

Using a Microcontroller to Study the Time Distribution of Counts From a Radioactive Source

Using a Microcontroller to Study the Time Distribution of Counts From a Radioactive Source Using a Microcontroller to Study the Time Distribution of Counts From a Radioactive Source Will Johns,Eduardo Luiggi (revised by Julia Velkovska, Michael Clemens September 11, 2007 Abstract In this lab

More information

Types of Spectra. How do spectrum lines form? 3/30/09. Electron cloud. Atom. Nucleus

Types of Spectra. How do spectrum lines form? 3/30/09. Electron cloud. Atom. Nucleus The electron should be thought of as a distribution or cloud of probability around the nucleus that on average behave like a point particle on a fixed circular path Types of Spectra How do spectrum lines

More information

Homework 04 - Electromagnetic Radiation

Homework 04 - Electromagnetic Radiation HW04 - Electromagnetic Radiation This is a preview of the published version of the quiz Started: Jul 7 at 9:43am Quiz Instructions Homework 04 - Electromagnetic Radiation Question 1-7 What is the frequency

More information

EXPERIMENT #5 The Franck-Hertz Experiment: Electron Collisions with Mercury

EXPERIMENT #5 The Franck-Hertz Experiment: Electron Collisions with Mercury EXPERIMENT #5 The Franck-Hertz Experiment: Electron Collisions with Mercury GOALS Physics Measure the energy difference between the ground state and the first excited state in mercury atoms, and conclude

More information

I. Pre-Lab Introduction

I. Pre-Lab Introduction I. Pre-Lab Introduction Please complete the following pages before the lab by filling in the requested items. A. Atomic notation: Atoms are composed of a nucleus containing neutrons and protons surrounded

More information

Lightbulbs. Lecture 18 : Blackbody spectrum Improving lightbulb efficiency

Lightbulbs. Lecture 18 : Blackbody spectrum Improving lightbulb efficiency Lightbulbs Lecture 18 : Blackbody spectrum Improving lightbulb efficiency Reminders: HW 7 due Monday at 10pm Simulations available in G116 Reading quiz on Tuesday, 10.1 EM radiation so far EM radiation

More information

THE GEIGER-MULLER TUBE AND THE STATISTICS OF RADIOACTIVITY

THE GEIGER-MULLER TUBE AND THE STATISTICS OF RADIOACTIVITY GMstats. THE GEIGER-MULLER TUBE AN THE STATISTICS OF RAIOACTIVITY This experiment examines the Geiger-Muller counter, a device commonly used for detecting and counting ionizing radiation. Various properties

More information

10/21/2015. Lightbulbs. Blackbody spectrum. Temperature and total emitted power (brightness) Blackbody spectrum and temperature

10/21/2015. Lightbulbs. Blackbody spectrum. Temperature and total emitted power (brightness) Blackbody spectrum and temperature Lightbulbs EM radiation so far EM radiation is a periodic modulation of the electric field: travels as a wave Wavelength (or frequency) determines: - type of EM radiation - if in visible range, wavelength

More information

Physics 6720 Introduction to Statistics April 4, 2017

Physics 6720 Introduction to Statistics April 4, 2017 Physics 6720 Introduction to Statistics April 4, 2017 1 Statistics of Counting Often an experiment yields a result that can be classified according to a set of discrete events, giving rise to an integer

More information

Determining the Optimum High Voltage for PMT s

Determining the Optimum High Voltage for PMT s Determining the Optimum High Voltage for PMT s Bertrand H. J. Biritz April 4, 006 In any experiment which uses photo-multiplier tubes, one needs to determine the optimum high voltage for each tube. Optimum

More information

Sample Exercise 6.1 Concepts of Wavelength and Frequency

Sample Exercise 6.1 Concepts of Wavelength and Frequency Sample Exercise 6.1 Concepts of Wavelength and Frequency Two electromagnetic waves are represented in the margin. (a) Which wave has the higher frequency? (b) If one wave represents visible light and the

More information

Motion II. Goals and Introduction

Motion II. Goals and Introduction Motion II Goals and Introduction As you have probably already seen in lecture or homework, and if you ve performed the experiment Motion I, it is important to develop a strong understanding of how to model

More information

1. Why photons? 2. Photons in a vacuum

1. Why photons? 2. Photons in a vacuum Photons and Other Messengers 1. Why photons? Ask class: most of our information about the universe comes from photons. What are the reasons for this? Let s compare them with other possible messengers,

More information

1 Some Statistical Basics.

1 Some Statistical Basics. Q Some Statistical Basics. Statistics treats random errors. (There are also systematic errors e.g., if your watch is 5 minutes fast, you will always get the wrong time, but it won t be random.) The two

More information

WISE Regression/Correlation Interactive Lab. Introduction to the WISE Correlation/Regression Applet

WISE Regression/Correlation Interactive Lab. Introduction to the WISE Correlation/Regression Applet WISE Regression/Correlation Interactive Lab Introduction to the WISE Correlation/Regression Applet This tutorial focuses on the logic of regression analysis with special attention given to variance components.

More information

LAB 2 - ONE DIMENSIONAL MOTION

LAB 2 - ONE DIMENSIONAL MOTION Name Date Partners L02-1 LAB 2 - ONE DIMENSIONAL MOTION OBJECTIVES Slow and steady wins the race. Aesop s fable: The Hare and the Tortoise To learn how to use a motion detector and gain more familiarity

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

A GUI FOR EVOLVE ZAMS

A GUI FOR EVOLVE ZAMS A GUI FOR EVOLVE ZAMS D. R. Schlegel Computer Science Department Here the early work on a new user interface for the Evolve ZAMS stellar evolution code is presented. The initial goal of this project is

More information

Please bring the task to your first physics lesson and hand it to the teacher.

Please bring the task to your first physics lesson and hand it to the teacher. Pre-enrolment task for 2014 entry Physics Why do I need to complete a pre-enrolment task? This bridging pack serves a number of purposes. It gives you practice in some of the important skills you will

More information

AST 105 Intro Astronomy The Solar System. MIDTERM II: Tuesday, April 5 [covering Lectures 10 through 16]

AST 105 Intro Astronomy The Solar System. MIDTERM II: Tuesday, April 5 [covering Lectures 10 through 16] AST 105 Intro Astronomy The Solar System MIDTERM II: Tuesday, April 5 [covering Lectures 10 through 16] REVIEW Light as Information Bearer We can separate light into its different wavelengths (spectrum).

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

Physics 17 Spring 2003 The Stefan-Boltzmann Law

Physics 17 Spring 2003 The Stefan-Boltzmann Law Physics 17 Spring 2003 The Stefan-Boltzmann Law Theory The spectrum of radiation emitted by a solid material is a continuous spectrum, unlike the line spectrum emitted by the same material in gaseous form.

More information

Project One: C Bump functions

Project One: C Bump functions Project One: C Bump functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 2, 2018 Outline 1 2 The Project Let s recall what the

More information

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

1 Photon optics! Photons and modes Photon properties Photon streams and statistics

1 Photon optics! Photons and modes Photon properties Photon streams and statistics 1 Photons and modes Photon properties Photon optics! Photon streams and statistics 2 Photon optics! Photons and modes Photon properties Energy, polarization, position, momentum, interference, time Photon

More information

MODERN OPTICS. P47 Optics: Unit 9

MODERN OPTICS. P47 Optics: Unit 9 MODERN OPTICS P47 Optics: Unit 9 Course Outline Unit 1: Electromagnetic Waves Unit 2: Interaction with Matter Unit 3: Geometric Optics Unit 4: Superposition of Waves Unit 5: Polarization Unit 6: Interference

More information

Energy and the Electron: Atomic View and Argumentation. b. Draw what you think an atom looks like. Label the different parts of the atom.

Energy and the Electron: Atomic View and Argumentation. b. Draw what you think an atom looks like. Label the different parts of the atom. Name Energy and the Electron: Atomic View and Argumentation Part I: Warm Up 1. Consider the following questions individually: a. What do you know about the structure of the atom? b. Draw what you think

More information

Practical 1P4 Energy Levels and Band Gaps

Practical 1P4 Energy Levels and Band Gaps Practical 1P4 Energy Levels and Band Gaps What you should learn from this practical Science This practical illustrates some of the points from the lecture course on Elementary Quantum Mechanics and Bonding

More information

Practical 1P4 Energy Levels and Band Gaps

Practical 1P4 Energy Levels and Band Gaps Practical 1P4 Energy Levels and Band Gaps What you should learn from this practical Science This practical illustrates some of the points from the lecture course on Elementary Quantum Mechanics and Bonding

More information

Laboratory Exercise. Atomic Spectra A Kirchoff Potpourri

Laboratory Exercise. Atomic Spectra A Kirchoff Potpourri 1 Name: Laboratory Exercise Atomic Spectra A Kirchoff Potpourri Purpose: To examine the atomic spectra from several gas filled tubes and understand the importance of spectroscopy to astronomy. Introduction

More information

Rice University Physics 332 LIFETIME OF THE MUON I. INTRODUCTION...2! II. MEASUREMENT PROCEDURES...3! III. ANALYSIS PROCEDURES...7!

Rice University Physics 332 LIFETIME OF THE MUON I. INTRODUCTION...2! II. MEASUREMENT PROCEDURES...3! III. ANALYSIS PROCEDURES...7! Rice University Physics 332 LIFETIME OF THE MUON I. INTRODUCTION...2! II. MEAUREMENT PROCEDURE...3! III. ANALYI PROCEDURE...7! Revised July 2011 I. Introduction In this experiment you will measure the

More information

LAB B. The Local Stellar Population

LAB B. The Local Stellar Population KEELE UNIVERSITY SCHOOL OF PHYSICAL AND GEOGRAPHICAL SCIENCES Year 1 ASTROPHYSICS LAB LAB B. The Local Stellar Population R. D. Jeffries version January 2010 D. E. McLaughlin Throughout this experiment

More information

Lecture 6 - spectroscopy

Lecture 6 - spectroscopy Lecture 6 - spectroscopy 1 Light Electromagnetic radiation can be thought of as either a wave or as a particle (particle/wave duality). For scattering of light by particles, air, and surfaces, wave theory

More information

Lab 5 - ELECTRON CHARGE-TO-MASS RATIO

Lab 5 - ELECTRON CHARGE-TO-MASS RATIO 79 Name Date Partners OBJECTIVES OVERVIEW Lab 5 - 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

Electromagnetic Radiation.

Electromagnetic Radiation. Electromagnetic Radiation http://apod.nasa.gov/apod/astropix.html CLASSICALLY -- ELECTROMAGNETIC RADIATION Classically, an electromagnetic wave can be viewed as a self-sustaining wave of electric and magnetic

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

Basics of Infrared Detection

Basics of Infrared Detection 2 Basics of Infrared Detection Before the in-depth analyses of quantum well, ISBT, and QWIP a specific infrared detector we first discuss the general concept of how the temperature of an object influences

More information

Chapter 5 Simplifying Formulas and Solving Equations

Chapter 5 Simplifying Formulas and Solving Equations Chapter 5 Simplifying Formulas and Solving Equations Look at the geometry formula for Perimeter of a rectangle P = L W L W. Can this formula be written in a simpler way? If it is true, that we can simplify

More information

Mon Jan Improved acceleration models: linear and quadratic drag forces. Announcements: Warm-up Exercise:

Mon Jan Improved acceleration models: linear and quadratic drag forces. Announcements: Warm-up Exercise: Math 2250-004 Week 4 notes We will not necessarily finish the material from a given day's notes on that day. We may also add or subtract some material as the week progresses, but these notes represent

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

PHYS 275 Experiment 2 Of Dice and Distributions

PHYS 275 Experiment 2 Of Dice and Distributions PHYS 275 Experiment 2 Of Dice and Distributions Experiment Summary Today we will study the distribution of dice rolling results Two types of measurement, not to be confused: frequency with which we obtain

More information

Calorimetry and heat capacitance

Calorimetry and heat capacitance (ta initials) first name (print) last name (print) brock id (ab17cd) (lab date) Experiment 1 Calorimetry and heat capacitance In this Experiment you will learn some basic methods of heat exchange between

More information

Properties of Electromagnetic Radiation Chapter 5. What is light? What is a wave? Radiation carries information

Properties of Electromagnetic Radiation Chapter 5. What is light? What is a wave? Radiation carries information Concepts: Properties of Electromagnetic Radiation Chapter 5 Electromagnetic waves Types of spectra Temperature Blackbody radiation Dual nature of radiation Atomic structure Interaction of light and matter

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

This is the last of our four introductory lectures. We still have some loose ends, and in today s lecture, we will try to tie up some of these loose

This is the last of our four introductory lectures. We still have some loose ends, and in today s lecture, we will try to tie up some of these loose This is the last of our four introductory lectures. We still have some loose ends, and in today s lecture, we will try to tie up some of these loose ends. 1 We re going to cover a variety of topics today.

More information

Experiment 4 Free Fall

Experiment 4 Free Fall PHY9 Experiment 4: Free Fall 8/0/007 Page Experiment 4 Free Fall Suggested Reading for this Lab Bauer&Westfall Ch (as needed) Taylor, Section.6, and standard deviation rule ( t < ) rule in the uncertainty

More information

Notes on Black body spectrum

Notes on Black body spectrum Notes on Black body spectrum Stefano Atzeni October 9, 216 1 The black body Radiation incident on a body can be absorbed, reflected, transmitted. We call black body an ideal body that absorbs all incident

More information

EXPERIMENT 17: Atomic Emission

EXPERIMENT 17: Atomic Emission EXPERIMENT 17: Atomic Emission PURPOSE: To construct an energy level diagram of the hydrogen atom To identify an element from its line spectrum. PRINCIPLES: White light, such as emitted by the sun or an

More information

Error Analysis in Experimental Physical Science Mini-Version

Error Analysis in Experimental Physical Science Mini-Version Error Analysis in Experimental Physical Science Mini-Version by David Harrison and Jason Harlow Last updated July 13, 2012 by Jason Harlow. Original version written by David M. Harrison, Department of

More information

Assignment 1 Physics/ECE 176

Assignment 1 Physics/ECE 176 Assignment 1 Physics/ECE 176 Made available: Thursday, January 13, 211 Due: Thursday, January 2, 211, by the beginning of class. Overview Before beginning this assignment, please read carefully the part

More information

Atoms and Spectra October 8th, 2013

Atoms and Spectra October 8th, 2013 Atoms and Spectra October 8th, 2013 Announcements Second writing assignment due two weeks from today (again, on a news item of your choice). Be sure to make plans to visit one of the open observing nights

More information

The Franck-Hertz Experiment David Ward The College of Charleston Phys 370/Experimental Physics Spring 1997

The Franck-Hertz Experiment David Ward The College of Charleston Phys 370/Experimental Physics Spring 1997 The Franck-Hertz Experiment David Ward The College of Charleston Phys 370/Experimental Physics Spring 1997 Abstract One of the most important experiments supporting quantum theory is the Franck- Hertz

More information

The Stefan-Boltzmann Law

The Stefan-Boltzmann Law The Stefan-Boltzmann Law Department of Physics Ryerson University 1 Introduction Thermal radiation is typically considered the starting point in many texts for discussions of old quantum theory and the

More information

Question Details UNCAstro101L1 5.IL.001. [ ]

Question Details UNCAstro101L1 5.IL.001. [ ] Lab 5: Distance Ladder II: Standard Candles (T) (2628698) Due: Fri Nov 7 2014 12:00 PM EST Question 1 Instructions Lab 5: The Cosmic Distance Ladder II: Standard Candles Read the lab before attending lab.

More information

For instance, for a particular star cluster, these data were derived:

For instance, for a particular star cluster, these data were derived: Astronomy 100 Name(s): Exercise 5: The H-R diagram and spectroscopy A very basic correlation using the color index By the 1920 s, various astronomers had evidence that the temperature of a star was also

More information

Project 2: Using linear systems for numerical solution of boundary value problems

Project 2: Using linear systems for numerical solution of boundary value problems LINEAR ALGEBRA, MATH 124 Instructor: Dr. T.I. Lakoba Project 2: Using linear systems for numerical solution of boundary value problems Goal Introduce one of the most important applications of Linear Algebra

More information

Computer simulation of radioactive decay

Computer simulation of radioactive decay Computer simulation of radioactive decay y now you should have worked your way through the introduction to Maple, as well as the introduction to data analysis using Excel Now we will explore radioactive

More information

To observe flame test colors produced by ions in solution.

To observe flame test colors produced by ions in solution. Flame Tests PURPOSE To determine the identities of ions in two solutions of unknown composition by comparing the colors they produce in flame tests with colors produced by solutions of known composition.

More information

Experiment 12: SPECTROSCOPY: EMISSION & ABSORPTION

Experiment 12: SPECTROSCOPY: EMISSION & ABSORPTION Sample Experiment 12: SPECTROSCOPY: EMISSION & ABSORPTION Purpose: Emission and absorption spectroscopy is to be explored from different perspectives in a multipart experiment. Part I: Certain elements

More information

Astronomy 15 - Problem Set Number 4

Astronomy 15 - Problem Set Number 4 Astronomy 15 - Problem Set Number 4 1) Suppose one were to observe a star for parallax with a telescope of 15 meters focal length. Suppose the pixels of the CCD are 24 microns in size (1 micron = 10 6

More information

Lecture 15. Theory of random processes Part III: Poisson random processes. Harrison H. Barrett University of Arizona

Lecture 15. Theory of random processes Part III: Poisson random processes. Harrison H. Barrett University of Arizona Lecture 15 Theory of random processes Part III: Poisson random processes Harrison H. Barrett University of Arizona 1 OUTLINE Poisson and independence Poisson and rarity; binomial selection Poisson point

More information

Tutorial Three: Loops and Conditionals

Tutorial Three: Loops and Conditionals Tutorial Three: Loops and Conditionals Imad Pasha Chris Agostino February 18, 2015 1 Introduction In lecture Monday we learned that combinations of conditionals and loops could make our code much more

More information

Physics Dec The Maxwell Velocity Distribution

Physics Dec The Maxwell Velocity Distribution Physics 301 7-Dec-2005 29-1 The Maxwell Velocity Distribution The beginning of chapter 14 covers some things we ve already discussed. Way back in lecture 6, we calculated the pressure for an ideal gas

More information

Updated 2013 (Mathematica Version) M1.1. Lab M1: The Simple Pendulum

Updated 2013 (Mathematica Version) M1.1. Lab M1: The Simple Pendulum Updated 2013 (Mathematica Version) M1.1 Introduction. Lab M1: The Simple Pendulum The simple pendulum is a favorite introductory exercise because Galileo's experiments on pendulums in the early 1600s are

More information

high energy state for the electron in the atom low energy state for the electron in the atom

high energy state for the electron in the atom low energy state for the electron in the atom Atomic Spectra Objectives The objectives of this experiment are to: 1) Build and calibrate a simple spectroscope capable of measuring wavelengths of visible light. 2) Measure several wavelengths of light

More information

How Do We Get Light from Matter: The Origin of Emission

How Do We Get Light from Matter: The Origin of Emission 1 How Do We Get Light from Matter: The Origin of Emission Lines ORGANIZATION Pre-Lab: Origins of Lines Mode: inquiry, groups of 2 Grading: lab notes and post-lab questions Safety: no special requirements

More information

Physics 2020 Laboratory Manual

Physics 2020 Laboratory Manual Physics 00 Laboratory Manual Department of Physics University of Colorado at Boulder Spring, 000 This manual is available for FREE online at: http://www.colorado.edu/physics/phys00/ This manual supercedes

More information

THE ATOMIC SPECTRUM OF HYDROGEN

THE ATOMIC SPECTRUM OF HYDROGEN THE ATOMIC SPECTRUM OF HYDROGEN When atoms are excited, either in an electric discharge or with heat, they tend to give off light. The light is emitted only at certain wavelengths that are characteristic

More information

Name Date Time to Complete

Name Date Time to Complete Name Date Time to Complete h m Partner Course/ Section / Grade Complex Circuits In this laboratory you will connect electric lamps together in a variety of circuits. The purpose of these exercises is to

More information

Lab 1: Measurement and Uncertainty

Lab 1: Measurement and Uncertainty 3 Lab 1: Measurement and Uncertainty I. Before you come to lab... A. Read through the handout on the course website, Chapters 1-2 from Taylor, An Introduction to Error Analysis. These chapters will introduce

More information

Introduction to Computational Neuroscience

Introduction to Computational Neuroscience CSE2330 Introduction to Computational Neuroscience Basic computational tools and concepts Tutorial 1 Duration: two weeks 1.1 About this tutorial The objective of this tutorial is to introduce you to: the

More information

COUNTING ERRORS AND STATISTICS RCT STUDY GUIDE Identify the five general types of radiation measurement errors.

COUNTING ERRORS AND STATISTICS RCT STUDY GUIDE Identify the five general types of radiation measurement errors. LEARNING OBJECTIVES: 2.03.01 Identify the five general types of radiation measurement errors. 2.03.02 Describe the effect of each source of error on radiation measurements. 2.03.03 State the two purposes

More information

Experiment objectives: measure the ratio of Planck s constant to the electron charge h/e using the photoelectric effect.

Experiment objectives: measure the ratio of Planck s constant to the electron charge h/e using the photoelectric effect. Chapter 1 Photoelectric Effect Experiment objectives: measure the ratio of Planck s constant to the electron charge h/e using the photoelectric effect. History The photoelectric effect and its understanding

More information

5 + 9(10) + 3(100) + 0(1000) + 2(10000) =

5 + 9(10) + 3(100) + 0(1000) + 2(10000) = Chapter 5 Analyzing Algorithms So far we have been proving statements about databases, mathematics and arithmetic, or sequences of numbers. Though these types of statements are common in computer science,

More information

Experiment A12 Monte Carlo Night! Procedure

Experiment A12 Monte Carlo Night! Procedure Experiment A12 Monte Carlo Night! Procedure Deliverables: checked lab notebook, printed plots with captions Overview In the real world, you will never measure the exact same number every single time. Rather,

More information

Outline. Today we will learn what is thermal radiation

Outline. Today we will learn what is thermal radiation Thermal Radiation & Outline Today we will learn what is thermal radiation Laws Laws of of themodynamics themodynamics Radiative Radiative Diffusion Diffusion Equation Equation Thermal Thermal Equilibrium

More information

VIBRATION-ROTATION SPECTRUM OF CO

VIBRATION-ROTATION SPECTRUM OF CO Rice University Physics 332 VIBRATION-ROTATION SPECTRUM OF CO I. INTRODUCTION...2 II. THEORETICAL CONSIDERATIONS...3 III. MEASUREMENTS...8 IV. ANALYSIS...9 April 2011 I. Introduction Optical spectroscopy

More information

Photoelectric Effect

Photoelectric Effect PHYS 201 LAB 02 Photoelectric Effect 1. Objectives The objectives of this experiment is to show that that light behaves like a particle when it interacts with matter, such as electrons on a metal surface.

More information

II Light.

II Light. II Light http://sgoodwin.staff.shef.ac.uk/phy111.html 0. Light Light is the main tool we have in astronomy. We detect light from distant objects and can determine the temperature, density, composition,

More information