Lesson 7 of 15
Branching Ratios and Partial Widths
Branching Ratios and Partial Widths
An unstable particle can decay via multiple channels. Each channel has a partial width — the rate of decay into that mode. The total decay width is:
The mean lifetime is . Each decay mode's probability is its branching ratio:
The Z Boson
The boson ( GeV, GeV) decays to:
| Mode | Partial Width | Branching Ratio |
|---|---|---|
| 83.91 MeV | 3.363% | |
| 83.99 MeV | 3.366% | |
| 84.08 MeV | 3.370% | |
| hadrons | 1740.8 MeV | 69.82% |
| (×3) | 501.55 MeV | 20.00% |
Counting Neutrino Generations
The invisible width is carried by neutrinos. Since we know MeV from the Standard Model, the number of light neutrino generations is:
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.