Lesson 4 of 15

Decay Width and Lifetime

Decay Width and Lifetime

Unstable particles decay with a characteristic mean lifetime τ\tau. Quantum field theory predicts the decay width Γ\Gamma, which is the total transition rate summed over all decay modes. They are related by:

τ=Γ\tau = \frac{\hbar}{\Gamma}

where =6.582119569×1025\hbar = 6.582119569 \times 10^{-25} GeV·s.

A broader resonance (Γ\Gamma large) lives for a shorter time. The Z boson has ΓZ=2.4952\Gamma_Z = 2.4952 GeV and lives only 3×1025\sim 3 \times 10^{-25} s, while the muon has Γμ3×1019\Gamma_\mu \sim 3 \times 10^{-19} GeV and lives 2.2μ2.2\,\mus.

Exponential Decay

The number of particles surviving at time tt:

N(t)=N0et/τN(t) = N_0\, e^{-t/\tau}

Lab Decay Length

A relativistic particle with Lorentz factor γ\gamma and velocity βc\beta c travels a mean distance before decaying:

Llab=γβcτL_{\text{lab}} = \gamma \beta c \tau

This is why high-energy pions travel farther before decaying — time dilation extends their laboratory lifetime by γ\gamma.

Your Task

Implement (using =6.582119569×1025\hbar = 6.582119569 \times 10^{-25} GeV·s and c=2.998×108c = 2.998 \times 10^8 m/s, defined inside each function):

  • lifetime_from_width(Gamma_GeV) — returns τ=/Γ\tau = \hbar / \Gamma in seconds
  • width_from_lifetime(tau_s) — returns Γ=/τ\Gamma = \hbar / \tau in GeV
  • lab_decay_length(tau_s, gamma, beta) — returns L=γβcτL = \gamma \beta c \tau in metres
Python runtime loading...
Loading...
Click "Run" to execute your code.