Lesson 11 of 15

Weinberg Angle and Electroweak Unification

Weinberg Angle and Electroweak Unification

The electroweak theory unifies electromagnetism and the weak nuclear force into a single framework. The key parameter that links the two interactions is the Weinberg angle (also called the weak mixing angle) θW\theta_W.

The Weinberg Angle

The measured value at the Z boson mass scale is:

sin2θW0.23122(Q=mZ)\sin^2\theta_W \approx 0.23122 \quad (Q = m_Z)

This angle "mixes" the SU(2)LSU(2)_L and U(1)YU(1)_Y gauge bosons to produce the photon and the Z boson. It relates the electromagnetic coupling ee, the weak coupling gg, and the hypercharge coupling gg':

gsinθW=gcosθW=eg \sin\theta_W = g' \cos\theta_W = e

W and Z Boson Masses

At tree level, the electroweak theory predicts a precise relationship between the W and Z boson masses:

mW=mZcosθW=mZ1sin2θWm_W = m_Z \cos\theta_W = m_Z \sqrt{1 - \sin^2\theta_W}

With mZ=91.1876m_Z = 91.1876 GeV and sin2θW=0.23122\sin^2\theta_W = 0.23122:

mW=91.1876×10.2312279.95 GeVm_W = 91.1876 \times \sqrt{1 - 0.23122} \approx 79.95 \text{ GeV}

The measured value is mW80.377m_W \approx 80.377 GeV — deviations are explained by radiative corrections.

Tree-Level W Mass from the Fermi Constant

The Fermi constant GF=1.1663788×105G_F = 1.1663788 \times 10^{-5} GeV2^{-2} governs the strength of weak decays (like muon decay). At tree level, the W mass satisfies:

mW2sin2θW=πα2GFm_W^2 \sin^2\theta_W = \frac{\pi \alpha}{\sqrt{2} \, G_F}

mW=1sinθWπα2GFm_W = \frac{1}{\sin\theta_W} \sqrt{\frac{\pi \alpha}{\sqrt{2} \, G_F}}

where α1/137.036\alpha \approx 1/137.036 is the fine-structure constant. This gives a slightly different value than the mZcosθWm_Z \cos\theta_W relation because loop corrections enter differently.

Your Task

Implement three functions:

  • w_mass_from_z(m_Z_GeV, sin2_theta_W) — W mass from the Z mass using mW=mZ1sin2θWm_W = m_Z\sqrt{1-\sin^2\theta_W}
  • weinberg_angle_deg() — the Weinberg angle in degrees from sin2θW=0.23122\sin^2\theta_W = 0.23122
  • w_mass_from_fermi(alpha, G_F_GeV2) — tree-level W mass from the Fermi constant

All physics constants must be defined inside each function body.

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