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 AA (the total number of protons and neutrons):

R=R0A1/3R = R_0 \cdot A^{1/3}

where R01.2 fm=1.2×1015R_0 \approx 1.2 \text{ fm} = 1.2 \times 10^{-15} m is the nuclear radius constant.

Nuclear Volume

Since RA1/3R \propto A^{1/3}, the nuclear volume V=43πR3V = \frac{4}{3}\pi R^3 scales linearly with AA:

V=43πR03AV = \frac{4}{3}\pi R_0^3 \cdot A

Nuclear Density

The nuclear density is strikingly constant for all nuclei:

ρ=AmuV=mu43πR032.3×1017 kg/m3\rho = \frac{A \cdot m_u}{V} = \frac{m_u}{\frac{4}{3}\pi R_0^3} \approx 2.3 \times 10^{17} \text{ kg/m}^3

where mu=1.66054×1027m_u = 1.66054 \times 10^{-27} kg is the atomic mass unit. This density is roughly 101410^{14} times denser than water — a teaspoon of nuclear matter would weigh about 500 million tonnes.

NucleusAARR (fm)
Proton11.20
He-441.90
C-12122.75
U-2382387.44

Your Task

Implement three functions. All constants must be defined inside each function.

  • nuclear_radius(A) — returns R=R0A1/3R = R_0 \cdot A^{1/3} in metres
  • nuclear_volume(A) — returns V=43πR3V = \frac{4}{3}\pi R^3 in m³
  • nuclear_density(A) — returns ρ=Amu/V\rho = A \cdot m_u / V in kg/m³

Use R0=1.2×1015R_0 = 1.2 \times 10^{-15} m and mu=1.66054×1027m_u = 1.66054 \times 10^{-27} kg.

Python runtime loading...
Loading...
Click "Run" to execute your code.