Lesson 13 of 15
Radioactive Decay Chains
Radioactive Decay Chains
Many radioactive nuclei do not decay directly to a stable state — they form a decay chain where each daughter nucleus is itself radioactive. Understanding the time evolution of each species requires the Bateman equations.
Two-Member Chain
Let be the number of parent nuclei and the number of daughter nuclei:
The parent decays exponentially:
The daughter population (Bateman solution, for ):
Secular Equilibrium
When the parent half-life is much longer than the daughter half-life (), after sufficient time the activities become equal — secular equilibrium:
This ratio is always less than 1 (daughters are far less abundant than parents in secular equilibrium).
Your Task
All constants must be defined inside each function. Use import math for math.exp.
parent_nuclei(N_P0, lambda_P, t)— parent population at timedaughter_nuclei(N_P0, lambda_P, lambda_D, t)— daughter population via Bateman solutionsecular_equilibrium_ratio(lambda_P, lambda_D)— equilibrium ratio
Python runtime loading...
Loading...
Click "Run" to execute your code.