Lesson 7 of 15

Branching Ratios and Partial Widths

Branching Ratios and Partial Widths

An unstable particle can decay via multiple channels. Each channel ii has a partial width Γi\Gamma_i — the rate of decay into that mode. The total decay width is:

Γtotal=iΓi\Gamma_{\text{total}} = \sum_i \Gamma_i

The mean lifetime is τ=/Γtotal\tau = \hbar / \Gamma_{\text{total}}. Each decay mode's probability is its branching ratio:

BRi=ΓiΓtotal\text{BR}_i = \frac{\Gamma_i}{\Gamma_{\text{total}}}

The Z Boson

The ZZ boson (MZ91.2M_Z \approx 91.2 GeV, ΓZ2.4952\Gamma_Z \approx 2.4952 GeV) decays to:

ModePartial WidthBranching Ratio
Ze+eZ \to e^+e^-83.91 MeV3.363%
Zμ+μZ \to \mu^+\mu^-83.99 MeV3.366%
Zτ+τZ \to \tau^+\tau^-84.08 MeV3.370%
ZZ \to hadrons1740.8 MeV69.82%
ZννˉZ \to \nu\bar{\nu} (×3)501.55 MeV20.00%

Counting Neutrino Generations

The invisible width Γinv=ΓZΓvisible\Gamma_{\text{inv}} = \Gamma_Z - \Gamma_{\text{visible}} is carried by neutrinos. Since we know Γ(Zνeνˉe)167.17\Gamma(Z \to \nu_e \bar{\nu}_e) \approx 167.17 MeV from the Standard Model, the number of light neutrino generations is:

Nν=ΓinvΓ(Zννˉ)3N_\nu = \frac{\Gamma_{\text{inv}}}{\Gamma(Z \to \nu\bar{\nu})} \approx 3

This LEP measurement proved there are exactly three neutrino families.

Your Task

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

  • branching_ratio(partial_width_GeV, total_width_GeV)
  • partial_width(total_width_GeV, branching_ratio)
  • number_of_neutrino_generations(Gamma_inv_GeV, Gamma_Z_to_nunu_GeV) — returns an integer
Python runtime loading...
Loading...
Click "Run" to execute your code.