Lesson 1 of 15
Nuclear Radius
Nuclear Radius
Nuclei are extraordinarily small — on the order of femtometres (1 fm = 10⁻¹⁵ m). Despite this, a remarkably simple empirical formula describes their size.
The Nuclear Radius Formula
The nuclear radius scales with the cube root of the mass number (the total number of protons and neutrons):
where m is the nuclear radius constant.
Nuclear Volume
Since , the nuclear volume scales linearly with :
Nuclear Density
The nuclear density is strikingly constant for all nuclei:
where kg is the atomic mass unit. This density is roughly times denser than water — a teaspoon of nuclear matter would weigh about 500 million tonnes.
| Nucleus | (fm) | |
|---|---|---|
| Proton | 1 | 1.20 |
| He-4 | 4 | 1.90 |
| C-12 | 12 | 2.75 |
| U-238 | 238 | 7.44 |
Your Task
Implement three functions. All constants must be defined inside each function.
nuclear_radius(A)— returns in metresnuclear_volume(A)— returns in m³nuclear_density(A)— returns in kg/m³
Use m and kg.
Python runtime loading...
Loading...
Click "Run" to execute your code.