Nuclear & Radiochemistry
Level: 3 (from-scratch derivations, explain-out-loud, code-from-memory) Time limit: 45 minutes Total marks: 60
Use / for all mathematics. Show every derivation step; state assumptions. Useful constants: , , , , , .
Q1. Decay law from scratch (10 marks) Starting only from the statement "the number of nuclei decaying per unit time is proportional to the number present": (a) Set up and solve the differential equation to obtain . (3) (b) Derive expressions for the half-life and the mean life , and show . (4) (c) Define activity , show , and explain why activity and number of nuclei fall with the same half-life. (3)
Q2. Binding energy computation (10 marks) For (atomic mass ): (a) Write the mass-defect expression using atomic masses (state why electron masses cancel). (2) (b) Compute the mass defect in u. (3) (c) Compute the total binding energy (MeV) and binding energy per nucleon. (3) (d) Explain in words why sits near the peak of the BE/nucleon curve and what this implies for fission vs fusion energy release. (2)
Q3. Radiocarbon dating (10 marks) A wooden artefact shows a specific activity of disintegrations per minute per gram of carbon. Living material gives dpm/g. Half-life of is yr. (a) Derive the dating formula from the decay law. (3) (b) Compute the age of the artefact. (4) (c) State two assumptions of radiocarbon dating and how each, if violated, biases the age. (3)
Q4. Decay modes & Q-value (10 marks) (a) For each of , , , and electron capture, give the generic nuclear equation and state how , , and change. (4) (b) Explain, using the N/Z stability band, which mode a neutron-rich nuclide adopts and which a proton-rich nuclide adopts. (2) (c) . Given masses , , , compute the Q-value in MeV and state whether decay is spontaneous. (4)
Q5. Reactors & fusion — explain out loud (10 marks) (a) Explain the role of moderator, control rods, and coolant in a thermal reactor, and contrast thermal vs fast reactors in one sentence each. (4) (b) Define critical mass and explain how the multiplication factor governs a chain reaction (, , ). (3) (c) Write the D–T fusion reaction and state two reasons fusion is far harder to sustain on Earth than fission. (3)
Q6. Code-from-memory — activity simulator (10 marks)
Write a Python function (pseudocode acceptable) remaining(N0, half_life, t) that returns the number of nuclei and the activity (in Bq, with in seconds) at time . Then:
(a) Give the function. (4)
(b) Hand-trace it for , s, s: give and . (4)
(c) State one numerical pitfall when and how to handle it. (2)
Answer keyMark scheme & solutions
Q1 (10)
(a) Postulate (1). Separate: (1) (1).
(b) Half-life: (1.5). Mean life (1.5). Hence (1).
(c) (1.5). Since with the same constant , both decay as , so they share (1.5).
Q2 (10)
(a) (1). Using atomic mass includes 1 electron; of them supply the 26 electrons of the Fe atom, so electron masses cancel (binding energy of electrons neglected) (1).
(b) , . ; ; sum (1). (2).
(c) (2). Per nucleon (1).
(d) Near the BE/nucleon peak (~8.8 MeV, iron region), nucleons are most tightly bound; energy is released by fusing lighter nuclei up toward it and by splitting heavier nuclei down toward it (2).
Q3 (10)
(a) (1) (1) (1).
(b) . (2). (≈ 4200 yr) (2).
(c) Any two, e.g.: (i) atmospheric constant over time — if it was higher in past, true age understated; (ii) no contamination/exchange after death — modern carbon contamination makes sample look younger; (iii) sample stopped exchanging carbon at death (closed system). (3, 1.5 each for assumption + bias direction)
Q4 (10)
(a) (1 each)
- : ; , , .
- : ; , , same.
- : ; , , same.
- EC: ; , , same.
(b) Neutron-rich (above band): converts n→p, lowering N/Z (1). Proton-rich (below band): /EC converts p→n, raising N/Z (1).
(c) (2). (1). ⇒ spontaneous (1).
Q5 (10)
(a) Moderator (e.g. water, graphite) slows fast fission neutrons to thermal energies to sustain fission in U (1). Control rods (B, Cd) absorb neutrons to regulate (1). Coolant removes heat / transfers it to generate steam (1). Thermal reactor: uses moderated slow neutrons, enriched/natural U; Fast reactor: no moderator, uses fast neutrons, can breed Pu (1).
(b) Critical mass = minimum fissile mass for a self-sustaining chain reaction (neutron production = losses) (1). = neutrons in one generation per neutron in previous: subcritical (dies out), critical (steady), supercritical (grows/explodes) (2).
(c) (1). Harder because: Coulomb barrier requires ~ K plasma; confinement (magnetic/inertial) of hot plasma is extremely difficult; no self-sustaining critical-mass analogue at reachable densities (any two, 2).
Q6 (10)
(a) (4)
import math
def remaining(N0, half_life, t):
lam = math.log(2) / half_life # decay constant, per s
N = N0 * math.exp(-lam * t) # surviving nuclei
A = lam * N # activity in Bq
return N, A(b) half-lives (1). (1.5). ; (1.5).
(c) For , underflows to 0 losing precision; use math.exp in log-space or decimal/mpmath, or work with (2).
[
{"claim":"Fe-56 mass defect and BE/nucleon", "code":"dm=26*1.007825+30*1.008665-55.934937; be=dm*931.5; bepn=be/56; result=(abs(dm-0.528463)<1e-4) and (abs(bepn-8.79)<0.05)"},
{"claim":"Radiocarbon age ~4200 yr", "code":"import math; t=(5730/math.log(2))*math.log(15.3/9.2); result=abs(t-4205)<40"},
{"claim":"Po-210 alpha Q-value 5.41 MeV", "code":"Q=(209.982874-(205.974465+4.002603))*931.5; result=abs(Q-5.41)<0.02"},
{"claim":"Decay simulator N and A at t=1800s", "code":"import math; lam=math.log(2)/600; N0=1e20; t=1800; N=N0*math.exp(-lam*t); A=lam*N; result=(abs(N-1.25e19)<1e17) and (abs(A-1.44e16)/1.44e16<0.02)"}
]