Nuclear & Radiochemistry
Level: 5 (Mastery — cross-domain: math + physics + computation) Time limit: 90 minutes Total marks: 60
Instructions: Attempt all three questions. Show all reasoning. Use , , . Atomic masses (u): , , , , .
Question 1 — Decay kinetics, series & dating (20 marks)
A rock sample contains a decay chain segment .
(a) Starting from , , derive from first-order rate laws the expression for . State clearly the ODE you solve and the integrating-factor step. (6)
(b) Show that is maximal at (4)
(c) A C dating problem: a wooden artefact shows a specific activity of disintegrations per minute per gram of carbon, while living material gives . The half-life of C is yr. Compute the age of the artefact. (5)
(d) Explain, in terms of the assumption of constant atmospheric , one physical reason why raw radiocarbon ages require calibration, and state whether uncalibrated ages tend to be too young or too old for samples formed during a period of higher past atmospheric C. (5)
Question 2 — Binding energy, Q-values & fusion (22 marks)
(a) Define binding energy per nucleon and explain, using the shape of the curve, why both fission of heavy nuclei and fusion of light nuclei release energy. Identify the approximate mass number of the peak. (4)
(b) For the D–T reaction compute the -value in MeV from the masses given. Show the mass defect calculation. (6)
(c) Of the released in (b), determine the kinetic energy carried by the neutron, assuming the reactants are essentially at rest (non-relativistic momentum conservation, use mass numbers 4 and 1 for the products). Comment on why this fraction matters for reactor wall/breeding design. (6)
(d) The solar p–p chain net reaction is . Using the mass of H and He and accounting for the two positrons (), compute the energy released per He formed (in MeV), and explain why the atomic-mass table already includes the electron correction that must be handled carefully here. (6)
Question 3 — Reactor/activity computation + radiation safety (18 marks)
A hospital receives a generator. Tc has h.
(a) A freshly eluted sample of Tc has activity . Write a short pseudocode / Python-style function activity(t) returning activity in GBq at time hours, and use it to compute the activity after h. (6)
(b) Compute the number of Tc atoms present at . (4)
(c) A technician receives a whole-body absorbed dose of of radiation. Given a radiation weighting factor for , state the equivalent dose in mSv and explain the difference in physical meaning between Gy and Sv. (4)
(d) shielding follows . For a lead shield with , find the thickness needed to reduce intensity to of incident. (4)
Answer keyMark scheme & solutions
Question 1
(a) ODEs (1): Solve first: (1). Substitute: Integrating factor (1): Integrate, apply (1): (2).
(b) Set : (1) ⇒ (1) ⇒ (1) ⇒ (1).
(c) yr. Age (2). (1). yr (2). ≈ 3.9 × 10³ yr.
(d) Assumption: constant equilibrium in atmosphere. Real production varies with solar activity and geomagnetic field, and modern fossil-fuel dilution/ bomb spikes alter it (2). Hence calibration against tree-ring/varve records is needed (1). If past atmospheric C was higher, the sample started with more C than assumed; using the modern baseline underestimates initial activity, so the computed age is too young (raw age younger than true) (2).
Question 2
(a) = total nuclear binding energy divided by nucleon number; average energy needed to remove one nucleon (1). Curve rises steeply for light nuclei, peaks near (Fe/Ni) (1). Moving toward the peak from either side increases , so products are more tightly bound; the excess binding energy is released — fusing light nuclei (up the left slope) and splitting heavy nuclei (up the right slope) both climb toward the peak (2).
(b) (2) (2). (2). Q ≈ 17.6 MeV.
(c) Momentum conservation: , so ? Careful: , so . With equal momenta (2). Total KE MeV split so (2). Neutron carries ≈ 14.1 MeV. This high-energy neutron determines wall damage and is captured in a Li blanket () to breed tritium fuel (2).
(d) Using atomic masses, . Atomic H includes 1 electron (4 total on LHS); atomic He includes 2 electrons; the reaction emits 2 positrons, so we must subtract for the positron rest masses explicitly (2). ; minus ; minus ⇒ (2). (2). (The 2 positrons later annihilate adding MeV; net ~26.7 MeV.)
Question 3
(a)
import math
def activity(t, A0=7.4, thalf=6.0):
lam = math.log(2)/thalf # per hour
return A0*math.exp(-lam*t) # GBq(3) At : (3). ≈ 2.6 GBq.
(b) (2). atoms (2).
(c) (1). Gy = absorbed energy per kg (J/kg), purely physical; Sv weights that by biological effectiveness () to reflect stochastic health risk (3).
(d) (4).
[
{"claim":"Radiocarbon age ~3855 yr","code":"t=5730/log(2)*log(15.30/9.60); result = abs(float(t)-3855)<15"},
{"claim":"D-T Q-value ~17.59 MeV","code":"dm=(2.014102+3.016049)-(4.002602+1.008665); Q=dm*931.494; result = abs(float(Q)-17.59)<0.05"},
{"claim":"Neutron KE = 14.07 MeV (4/5 of Q)","code":"dm=(2.014102+3.016049)-(4.002602+1.008665); Q=dm*931.494; En=Rational(4,5)*Q; result = abs(float(En)-14.07)<0.05"},
{"claim":"pp-chain Q ~25.71 MeV","code":"dm=4*1.007825-4.002602-2*0.000549; Q=dm*931.494; result = abs(float(Q)-25.71)<0.05"},
{"claim":"Tc-99m activity at 9h ~2.616 GBq","code":"A=7.4*2**Rational(-3,2); result = abs(float(A)-2.616)<0.01"},
{"claim":"Lead shield thickness for 1% ~3.84 cm","code":"x=log(100)/Rational(12,10); result = abs(float(x)-3.838)<0.01"}
]