Lesson 4 of 15
Decay Constant and Half-Life
Decay Constant and Half-Life
Radioactive decay is a stochastic process — any individual nucleus may decay at any moment, but large ensembles follow a precise statistical law.
The Decay Law
The rate of decay is proportional to the number of nuclei present:
where is the decay constant (units: s⁻¹). This gives the exponential solution:
Half-Life
The half-life is the time for half the nuclei to decay:
Conversely, given the half-life:
Mean Lifetime
The mean lifetime is the average time a nucleus survives before decaying:
Activity
The activity is the number of decays per second (unit: Becquerel, Bq):
| Isotope | Half-Life | (s⁻¹) |
|---|---|---|
| C-14 | 5730 yr | 3.83 × 10⁻¹² |
| Ra-226 | 1600 yr | 1.37 × 10⁻¹¹ |
| Po-210 | 138.4 d | 5.80 × 10⁻⁸ |
| Bi-212 | 60.55 min | 1.91 × 10⁻⁴ |
Your Task
Implement three functions using math.log(2) for . All constants must be defined inside each function.
decay_constant(half_life_s)— returns in s⁻¹half_life(lambda_s)— returns in smean_lifetime(half_life_s)— returns in s
Python runtime loading...
Loading...
Click "Run" to execute your code.