Lesson 7 of 15
Radioactive Activity
Radioactive Activity
Activity is the number of decays per second. It is directly proportional to the number of radioactive nuclei present:
One Becquerel equals one decay per second. The older unit, the Curie (Ci), was defined as the activity of 1 gram of radium-226:
Specific Activity
The specific activity is the activity per unit mass. For a pure isotope:
where mol⁻¹ is Avogadro's number and is the molar mass in kg/mol.
Examples
- C-14 ( yr, kg/mol): high specific activity due to short half-life
- Ra-226 ( yr, kg/mol): ~1 Ci/g by definition
- U-238 ( yr): very low specific activity
Your Task
Implement:
activity_bq(N, lambda_s)— activity in Bq given number of nuclei and decay constant in s⁻¹bq_to_curie(activity_bq)— convert Bq to Curiespecific_activity(half_life_s, molar_mass_kg_per_mol)— specific activity in Bq/kg
All constants (, Ci definition) must be inside each function.
Python runtime loading...
Loading...
Click "Run" to execute your code.