Lesson 15 of 15

Particle Lifetimes and the Standard Model

Particle Lifetimes and the Standard Model

Particle lifetimes in the Standard Model span more than 40 orders of magnitude — from the proton's stability over cosmic timescales to the fleeting existence of the W boson. Understanding what sets these lifetimes reveals deep connections between symmetries, coupling strengths, and phase space.

The Width–Lifetime Relation

Every unstable particle has a decay width Γ\Gamma (in energy units) related to its lifetime τ\tau by:

Γτ==6.582119569×1025 GeV\cdotps\Gamma \cdot \tau = \hbar = 6.582119569 \times 10^{-25} \text{ GeV·s}

A broad resonance (Γ\Gamma large) decays quickly (τ\tau small). The natural linewidth of any state is just Γ=/τ\Gamma = \hbar/\tau.

Lifetime Hierarchy

ParticleLifetime τ\tauDominant decay
Proton>1034> 10^{34} yrStable (baryon number)
Neutron878.4 sβ\beta decay (npeνˉen \to p e^- \bar\nu_e)
Muon μ±\mu^\pm2.197×1062.197 \times 10^{-6} sWeak
Pion π±\pi^\pm2.603×1082.603 \times 10^{-8} sWeak (π+μ+νμ\pi^+ \to \mu^+\nu_\mu)
Pion π0\pi^08.52×10178.52 \times 10^{-17} sEM (π0γγ\pi^0 \to \gamma\gamma)
B meson1.638×10121.638 \times 10^{-12} sWeak (CKM mixing)
W bosonΓ=2.085\Gamma = 2.085 GeVWν,qqˉW \to \ell\nu, q\bar{q}'
Higgs bosonΓ=4.07×103\Gamma = 4.07 \times 10^{-3} GeVHbbˉ,WW,ZZ,H \to b\bar{b}, WW^*, ZZ^*, \ldots

Relativistic Decay Length

A particle produced with momentum pp and mass mm travels (on average) a distance before decaying:

L=pmcτ=βγcτL = \frac{p}{m}\, c\, \tau = \beta\gamma c\tau

This is crucial for detector design. A charged pion with p=100p = 100 GeV travels kilometers before decaying — it easily reaches the muon detectors. A B meson with p50p \sim 50 GeV travels only ~mm, requiring precision vertex detectors (silicon pixels) close to the interaction point.

Your Task

Implement:

  • natural_width(tau_s) — decay width Γ=/τ\Gamma = \hbar/\tau in GeV
  • decay_length_at_LHC(mass_GeV, tau_s, momentum_GeV) — relativistic decay length in metres
  • compare_widths(Gamma1_GeV, Gamma2_GeV) — ratio of two decay widths

All constants must be defined inside each function body.

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