Lesson 10 of 15

Breit-Wigner Resonance

Breit-Wigner Resonance

When the centre-of-mass energy s\sqrt{s} passes through a particle's rest mass MM, the cross section peaks sharply. This resonance is described by the non-relativistic Breit-Wigner formula:

σ(E)=σpeak1+(2(EM)Γ)2\sigma(E) = \frac{\sigma_{\text{peak}}}{1 + \left(\dfrac{2(E - M)}{\Gamma}\right)^2}

where Γ\Gamma is the total decay width (inverse lifetime). The shape is a Lorentzian centred at E=ME = M with full width at half maximum equal to Γ\Gamma.

Peak Cross Section for Z Production

For e+eZe^+e^- \to Z \to hadrons, the peak cross section is:

σpeak=12πMZ2ΓeeΓhadΓZ2\sigma_{\text{peak}} = \frac{12\pi}{M_Z^2} \cdot \frac{\Gamma_{ee} \Gamma_{\text{had}}}{\Gamma_Z^2}

In natural units this has dimensions of GeV2^{-2}. Using the conversion 1 GeV2=3.894×105 nb1 \text{ GeV}^{-2} = 3.894 \times 10^5 \text{ nb}:

σpeak41.4 nb\sigma_{\text{peak}} \approx 41.4 \text{ nb}

This enormous cross section (compared to typical QED backgrounds 1\sim 1 nb) made the ZZ lineshape measurement at LEP exquisitely precise.

Parameters used (PDG values)

ParameterValue
MZM_Z91.1876 GeV
ΓZ\Gamma_Z2.4952 GeV
Γee\Gamma_{ee}0.08391 GeV
Γhad\Gamma_{\text{had}}1.7408 GeV

Measuring Γ\Gamma from the Lineshape

The half-maximum points of the resonance occur at E=M±Γ/2E = M \pm \Gamma/2. The full width Γ=E2E1\Gamma = E_2 - E_1 can be read directly from the energy scan.

Your Task

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

  • breit_wigner(E_GeV, M_GeV, Gamma_GeV) — normalised Breit-Wigner (peak = 1)
  • z_peak_cross_section_nb() — peak cross section for e+eZe^+e^- \to Z \to hadrons in nb
  • width_from_peak_shape(E1_GeV, E2_GeV, M_GeV) — extract Γ\Gamma from half-max energies
Python runtime loading...
Loading...
Click "Run" to execute your code.