Electromagnetic Transitions

Gamma decay is the emission of a photon from an excited nuclear state. Unlike alpha and beta decay, which change the nuclear composition, gamma decay only changes the energy state of the nucleus:

$$^A_Z X^* \to ^A_Z X + \gamma$$

Gamma-ray energies typically range from tens of keV to several MeV, corresponding to the energy spacing between nuclear levels. The emitted photon carries angular momentum $L$ and parity $(-1)^L$ (electric) or $(-1)^{L+1}$ (magnetic).

Selection Rules

The multipolarity of the transition is determined by angular momentum and parity conservation:

$$|J_i - J_f| \leq L \leq J_i + J_f, \quad L \geq 1$$
TypeNotationParity Change$\Delta J$
Electric dipoleE1Yes0, 1
Magnetic dipoleM1No0, 1
Electric quadrupoleE2No0, 1, 2
Magnetic quadrupoleM2Yes0, 1, 2
Electric octupoleE3Yes0, 1, 2, 3

Note: $0 \to 0$ transitions are strictly forbidden by single-photon emission (a photon must carry at least $L = 1$ unit of angular momentum).

Weisskopf Estimates

Weisskopf single-particle estimates provide order-of-magnitude transition rates assuming the transition involves a single nucleon changing its state:

$$T(EL) \approx \frac{4.4(L+1)}{L[(2L+1)!!]^2}\left(\frac{3}{L+3}\right)^2 \left(\frac{E_\gamma}{\hbar c}\right)^{2L+1} \left(\frac{R}{\hbar c}\right)^{2L} \cdot c$$

Key scaling relations:

  • - Rate scales as $E_\gamma^{2L+1}$: higher-energy transitions are much faster
  • - Each increase in $L$ suppresses the rate by roughly $10^5$-$10^7$
  • - Electric transitions are typically ~100x faster than magnetic of same $L$
  • - The lowest allowed multipolarity dominates

Internal Conversion

Internal conversion is a competing de-excitation process where the nuclear excitation energy is transferred directly to an atomic electron (usually K or L shell), which is ejected from the atom:

$$T_e = E^* - B_e$$

where $E^*$ is the excitation energy and $B_e$ is the electron binding energy. The internal conversion coefficient is:

$$\alpha_{\text{IC}} = \frac{\lambda_{\text{IC}}}{\lambda_\gamma}$$

Internal conversion is enhanced for low-energy transitions, high-Z nuclei, and higher multipolarities. It is the only de-excitation mechanism for E0 ($0^+ \to 0^+$) transitions.

Isomeric States

Nuclear isomers are long-lived excited states that decay slowly because the available transitions require high multipolarity. They occur when there is a large spin difference between the isomeric state and lower-lying states. Famous examples:

  • - $^{180m}$Ta: $J^\pi = 9^-$, the only naturally occurring nuclear isomer (stable for practical purposes)
  • - $^{99m}$Tc: $t_{1/2} = 6$ hours, widely used in medical imaging (SPECT)
  • - $^{178m2}$Hf: $J^\pi = 16^+$, $t_{1/2} = 31$ years, stores 2.4 MeV of energy

Python Simulation: Transition Rates

Weisskopf single-particle estimates for electric and magnetic transition rates as a function of gamma-ray energy and multipolarity.

Gamma Transition Rates vs Multipolarity

Python

Weisskopf estimates showing hierarchy of electric and magnetic multipole transition rates

script.py97 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server

Fortran Implementation

Comprehensive Weisskopf estimate calculator for electric and magnetic transitions.

Weisskopf Estimate Calculator

Fortran

Computes electromagnetic transition rates for electric and magnetic multipoles

weisskopf_estimates.f9098 lines

Click Run to execute the Fortran code

Code will be compiled with gfortran and executed on the server