Half-Life Calculator Formula
Understand the math behind the half-life calculator. Each variable explained with a worked example.
Formulas Used
Remaining
remaining = initial * pow(0.5, time / half_life)Decayed
decayed = initial - initial * pow(0.5, time / half_life)Num Halves
num_halves = time / half_lifePct Remaining
pct_remaining = pow(0.5, time / half_life) * 100Variables
| Variable | Description | Default |
|---|---|---|
initial | Initial Quantity | 100 |
half_life | Half-Life | 5 |
time | Elapsed Time | 15 |
How It Works
Half-Life Formula
Formula
N(t) = N₀ × (1/2)^(t/t½)
Where:
Properties
Worked Example
100 units with a half-life of 5 after 15 time units.
initial = 100half_life = 5time = 15
- 01Number of half-lives = 15/5 = 3
- 02Remaining = 100 × (0.5)³
- 03= 100 × 0.125
- 04= 12.5
Ready to run the numbers?
Open Half-Life Calculator