Radioactive Decay Chains
When a radioactive nucleus decays, the daughter product is often itself unstable. This leads to a chain of successive decays until a stable nuclide is reached. The mathematical description of such chains was first solved by Harry Bateman in 1910 and forms the foundation for understanding natural radioactivity, nuclear waste management, and radiometric dating.
A general decay chain can be written as:
where $\lambda_i$ is the decay constant for species $i$, related to its half-life by $\lambda_i = \ln 2 / t_{1/2,i}$.
The Bateman Equations
The coupled differential equations governing a decay chain are:
For a two-member chain ($N_1 \to N_2$ stable), starting with $N_1(0) = N_1^0$ and $N_2(0) = 0$:
The general Bateman solution for the $n$-th member, starting from pure parent, is:
This elegant closed-form solution assumes all decay constants are distinct. When two decay constants are nearly equal, numerical methods are preferred to avoid cancellation errors.
Secular and Transient Equilibrium
Two important limiting cases arise depending on the relative half-lives of parent and daughter:
Secular Equilibrium ($\lambda_1 \ll \lambda_2$)
When the parent half-life is much longer than the daughter's ($t_{1/2,1} \gg t_{1/2,2}$), the parent activity remains essentially constant. After several daughter half-lives, the daughter activity equals the parent activity:
Example: $^{226}$Ra (1600 yr) โ $^{222}$Rn (3.82 d). After ~30 days, the radon activity equals the radium activity.
Transient Equilibrium ($\lambda_1 < \lambda_2$)
When the parent half-life is longer but not overwhelmingly so, the daughter activity initially grows, reaches a maximum, then tracks the parent decay with a constant ratio:
The daughter activity maximum occurs at:
If $\lambda_1 > \lambda_2$ (parent decays faster), no equilibrium is established. The daughter accumulates, reaches a maximum, and then decays with its own half-life.
The Four Natural Decay Series
Since alpha decay reduces the mass number by 4, all naturally occurring heavy nuclides fall into one of four families defined by $A \mod 4$:
| Series | Form | Head | Stable End | $t_{1/2}$ (Head) |
|---|---|---|---|---|
| Thorium | $4n$ | $^{232}$Th | $^{208}$Pb | 1.41 ร 10ยนโฐ yr |
| Neptunium | $4n+1$ | $^{237}$Np | $^{209}$Bi | 2.14 ร 10โถ yr |
| Uranium | $4n+2$ | $^{238}$U | $^{206}$Pb | 4.47 ร 10โน yr |
| Actinium | $4n+3$ | $^{235}$U | $^{207}$Pb | 7.04 ร 10โธ yr |
The Neptunium series ($4n+1$) is extinct in nature because its longest-lived member ($^{237}$Np) has a half-life much shorter than the age of the Earth. The other three series are observed in natural uranium and thorium ores.
Branching Ratios
Many nuclides in these chains can decay by more than one mode (e.g., both alpha and beta decay). The branching ratio $b_i$ for mode $i$ is:
For example, $^{212}$Bi decays by alpha emission (35.94%) to $^{208}$Tl, or by beta emission (64.06%) to $^{212}$Po.
Radioactive Dating Methods
Carbon-14 Dating
$^{14}$C is produced in the atmosphere by cosmic ray neutrons: $^{14}$N(n,p)$^{14}$C. Living organisms maintain equilibrium with atmospheric $^{14}$C/$^{12}$C ratio. After death,$^{14}$C decays with $t_{1/2} = 5730$ yr:
Effective range: ~300 to ~50,000 years.
Uranium-Lead Dating
Two independent decay chains provide a consistency check. The age is determined from the ratios of lead isotopes to uranium:
These can be combined into a concordia diagram. Points lying on the concordia curve give concordant ages; discordant points indicate open-system behavior (lead loss).
Potassium-Argon Dating
$^{40}$K decays by electron capture to $^{40}$Ar (branching ratio 10.72%) and by $\beta^-$ to $^{40}$Ca (89.28%), with combined $t_{1/2} = 1.248 \times 10^9$ yr:
Applicable to rocks from ~100,000 years to billions of years old. The trapped argon in minerals provides the clock.
Activity and Units
The activity of a radioactive sample is defined as the number of disintegrations per unit time:
Units: 1 Becquerel (Bq) = 1 disintegration/s; 1 Curie (Ci) = 3.7 ร 10ยนโฐ Bq. For a chain in secular equilibrium, the total activity of each member is equal:
This means that in an old uranium ore where secular equilibrium has been established, all 14 members of the $^{238}$U chain have the same activity. The number of atoms of each member scales inversely with its decay constant.
Simulation: Bateman Decay Chain
This simulation solves the Bateman equations for a three-member decay chain A โ B โ C (stable), showing both transient equilibrium behavior and activity evolution.
Click Run to execute the Python code
Code will be executed with Python 3 on the server
Fortran Simulation: Four-Member Chain
This Fortran program integrates a four-member decay chain using 4th-order Runge-Kutta, demonstrating numerical solution of the coupled differential equations and verification of atom conservation.
Click Run to execute the Fortran code
Code will be compiled with gfortran and executed on the server