Half life with a spreadsheet
In this activity you will create a simulation of radioactive decay using a spreadsheet.
Top Rows Set-up:
Cell B1: Decay Probability
Cell C1: Whole number between 1 and 10
This sets the probability of a nucleus decaying. If the number is high there is more chance of a nucleus decaying, if the number is low there is less chance of a nucleus decaying.
Cell D1: Decay
Cell D2: Remaining
Cells E1 -> Q1: Number 1->12
Cells E2 -> Q2: Set equal to remaining unstable nuclei per decay
Isotope Decay Model:
ROW 6: Heading of Decay Model
A6: # of Atom
B6: Decay 1
C6: =sum(c7:c106) This will count the number of remaining unstable nuclei.
D6 ->Y6: Repeat B6 and C6 info making appropriate changes.
Rows 7 -> 106 (100 rows = 100 atoms)
A7: =Row()-6
This sets the value of the cell to the row number minus the starting point, it should return a value of 1
B7: =RandBetween(1,10)
This is a random number generator and in this case will generate a number between 1 and 10.
C7: =if(B7<$C$1,0,1) ((=if(Condition,THEN,ELSE)
This reads as follows: If B7 is less than C1, then return '0', else return '1'.
This means that if the number in column B is less your decay probability number in C1 (in this case 6) then a 0 is registered - this represents a nucleus that has decayed. If the number in column B is equal to or more than 6, then a 1 is registered - this represents a nucleus that has not decayed. The dollar signs ($) lock the formula to the cell C1.
D7: =if(C7=1,RandBetween(1,10),0)
This reads as follows: If C7 equals 1 then produce a random number between 1 and 10, if C7 does not equal 1 the produce a 0 (also read as else 0).
E7->Y7: Repeat of C7:D7
You should be able to copy C7:D7 into each of the columns.
Once you have ROW 7 setup, select all the cells and drag the contents to ROW 106 using the small blue box in the lower right hand corner.
You should now have a large array of data that changes when you change a cell.
Add analysis and visuals:
C6: =sum(C7:c106)
This will return a total of unstable nuclei.
You will use this value in your data table in D1:Q2
Conditional Formatting:
Using the FORMAT... Conditional Formatting... tool, set a rule so that unstable nuclei (cell value = 1) are green
Create a Graph:
Using the data in D1:Q2, create a Scatter Plot of your data.
Add an EXPONENTIAL trendline, labeled with the equation.
Produce continuous new sets of data:
FILE...SPREADSHEET SETTINGS...CALCULATIONS
Set RECALCULATION to "On change and every minute"
Half life of soda foam
In this activity you will determine the half-life of soda foam by plotting a graph of height of foam against time. When you pour a glass of soda the gas in the soda forms bubbles, called a head. This models radioactive decay as each bubble can be considered to be like an unstable nucleus. The bubble bursting is equivalent to a nucleus decaying. The bubbles burst randomly - it is not possible to predict which bubble will burst next and when and this a a good representation of the randomness of radioactive decay.
It’s not possible to count the number of bubbles but you can measure the height of soda which increases as the bubbles burst. This will give you an exponential increase however if you measure the height of the soda downwards from the final level (when there is no foam) then you get an exponential decay that is proportional to the decay of the foam.
You are going to make a video of the soda settling and then import the video into LoggerPro to analyse the video. The gif shows a typical settling of the soda as the height of soda rising and the bubbles above it burst. Record for about 5 minutes or until the height of soda stops rising.
Remember that there must be something of a known length in the video in order to scale the video analysis properly. Either add a ruler to the video or measure the height of the measuring cylinder itself. Import the video into LoggerPro by clicking on the Insert tab and then choosing Movie...
Go to the end of the video and set the top height of the soda as zero using the set origin tool as shown below.
Now rewind to the beginning of the video and start marking the level of the soda as it rises up the cylinder using the tool as shown below.
The changes per frame will be very small, you can adjust the number of frames the video advances within the Movie Options... menu.
When you are finished marking the points you should be able to see an upside down decay curve. You can make it positive by creating a calculated column where the y-values are multiplied by -1.
Fit an exponential decay curve to your data.
Determine the half-life of the soda foam from the graph.
Adapted from Mr. McNeill's Beer Foam Lab.
A. X is a radioactive nuclide that decays to a stable nuclide. The activity of X falls to 1/8th of its original value in 48 s.
Determine the half-life of X? t=16s
B. A detector, placed close to a radioactive source, detects an activity of 520 Bq. The average background activity at this location is 40 Bq. The radioactive nuclide has a half-life of 9 hours.
Calculate the activity detected after 36 hours? 35 Bq
35 Bq
C. The radioactive nuclide beryllium-10 (Be-10) undergoes beta minus (β–) decay to form a stable boron (B) nuclide.
Initially, there are 0.64 mols of Be-10. After 5.6x106 yrs, there are 15 boron nuclei for each Be-10 nuclei.
Show that the half life of Be-10 is 1.4x106 yrs.
After 9.9x106 yrs, show that the number of B nuclei is 0.635 mols.
On the graph, sketch how the number of boron nuclei in the sample varies with time.
Please make a copy HERE. - Solutions