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) .
The Weinberg Angle
The measured value at the Z boson mass scale is:
This angle "mixes" the and gauge bosons to produce the photon and the Z boson. It relates the electromagnetic coupling , the weak coupling , and the hypercharge coupling :
W and Z Boson Masses
At tree level, the electroweak theory predicts a precise relationship between the W and Z boson masses:
With GeV and :
The measured value is GeV — deviations are explained by radiative corrections.
Tree-Level W Mass from the Fermi Constant
The Fermi constant GeV governs the strength of weak decays (like muon decay). At tree level, the W mass satisfies:
where is the fine-structure constant. This gives a slightly different value than the 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 usingweinberg_angle_deg()— the Weinberg angle in degrees fromw_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.