Electroweak Theory and Grand Unification
The electroweak theory combines weak interactions and electromagnetism into a gauge theory with spontaneous symmetry breaking. At high energy the natural gauge group is ; at low energy the Higgs vacuum leaves an unbroken . The photon remains massless, while the and bosons become massive.
Grand unification asks whether the gauge groups and matter representations of the Standard Model are fragments of a larger simple group such as or . Zee's grand-unification chapters connect group theory, running couplings, proton decay, and the idea that apparently different charges may be different components of one deeper gauge structure.
Definitions
The electroweak gauge group is
The covariant derivative acting on a field with weak isospin generators and hypercharge is
The Higgs doublet may be written in unitary gauge as
The electric charge generator is
The physical photon and boson are mixtures of and :
with
Key results
The Higgs kinetic term
generates gauge boson masses after takes its vacuum value. The charged weak bosons are
with mass
The neutral massive boson has
The photon remains massless because the vacuum is invariant under the electromagnetic generator .
In grand unification, the running gauge couplings are extrapolated to high energy. A simple unified group would have one gauge coupling at the unification scale, later splitting into the observed strong, weak, and hypercharge couplings through symmetry breaking and RG flow. Proton decay is a generic risk because quarks and leptons can sit in common multiplets, allowing heavy gauge bosons to mediate baryon-number-violating processes.
The group is especially economical because one Standard Model generation plus a right-handed neutrino fits into a single spinor representation. This is one reason it appears in many unification discussions.
Fermion masses enter through Yukawa couplings to the Higgs field. A schematic charged-lepton term is
After the Higgs gets its vacuum value, this becomes a mass term
Thus the Higgs mechanism gives masses not only to weak gauge bosons but also, through Yukawa interactions, to charged fermions and quarks. The pattern of Yukawa couplings is one of the least explained numerical structures in the Standard Model.
The electroweak theory is chiral: left-handed and right-handed fermions transform differently. This makes anomaly cancellation nontrivial. The quark and lepton hypercharges in each generation are arranged so that the dangerous gauge anomalies cancel. This cancellation is one of the strongest hints that the fermion content is not arbitrary, even though it does not by itself prove a specific grand-unified group.
Grand unification uses RG flow as evidence and constraint. The three Standard Model gauge couplings run differently because their beta functions differ. In simple unification, after proper normalization of hypercharge, the couplings approach a common value at a high scale. In the minimal Standard Model they do not meet perfectly; extensions such as low-energy supersymmetry historically improved the apparent meeting, though experimental constraints have made the simplest stories more difficult.
Proton decay is the sharp phenomenological cost of many GUTs. Heavy gauge bosons or colored Higgs fields can mediate baryon-number-violating processes. Nonobservation of proton decay sets very high lower bounds on the masses of such particles and rules out or pressures simple models. A viable unification story must therefore address both coupling patterns and rare-process constraints.
Neutrino mass is another motivation for larger structures. If a right-handed neutrino exists, a large Majorana mass can produce small observed neutrino masses through the seesaw mechanism. Groups such as naturally accommodate such a field, which is why neutrino physics often appears beside grand unification.
Visual
| Boson | Field combination | Mass after symmetry breaking |
|---|---|---|
Worked example 1: Electroweak mass relation
Problem: Derive the tree-level relation
Step 1: Use the mass formulas:
Step 2: The weak mixing angle is defined by
Step 3: Therefore
Step 4: Simplify:
Step 5: Multiply by :
Step 6: Cancel the square roots:
The checked answer is the tree-level electroweak mass relation. Radiative corrections shift precision observables but preserve the logic of the symmetry-breaking pattern.
Worked example 2: Proton decay scaling from a heavy boson
Problem: A grand-unified heavy gauge boson of mass mediates a baryon-number-violating four-fermion operator. Estimate how the proton decay rate scales with .
Step 1: Integrating out a heavy boson gives a dimension-six operator:
Step 2: A decay amplitude has the same leading coefficient:
times a hadronic matrix element.
Step 3: A decay rate is proportional to amplitude squared times phase space:
Step 4: Therefore
where supplies the correct dimension for a dimension-six decay estimate.
Step 5: The lifetime is inverse rate:
The checked conclusion is that proton lifetime is extremely sensitive to the unification scale: raising by a factor of raises the lifetime estimate by .
Code
import math
def electroweak_masses(g, gp, v=246.0):
mw = 0.5 * g * v
mz = 0.5 * v * math.sqrt(g * g + gp * gp)
cos_theta = g / math.sqrt(g * g + gp * gp)
return mw, mz, mz * cos_theta
mw, mz, relation = electroweak_masses(0.65, 0.36)
print("mW estimate:", mw)
print("mZ estimate:", mz)
print("mZ cos(theta):", relation)
Common pitfalls
- Saying electromagnetism is broken in the electroweak theory. The Higgs vacuum leaves unbroken.
- Confusing hypercharge with electric charge . They are related by .
- Forgetting that the photon and are mixtures of and .
- Treating grand unification as established fact. It is an elegant framework with strong constraints, not confirmed physics.
- Ignoring proton decay constraints when discussing simple GUT models.
- Forgetting that the weak interaction is chiral. Left- and right-handed fermions do not have identical electroweak quantum numbers.
- Treating Yukawa couplings as predicted by the Higgs mechanism. The mechanism converts Yukawa couplings into masses, but the numerical values of those couplings are inputs in the Standard Model.
- Comparing gauge couplings for unification without the correct hypercharge normalization. Grand-unified normalization matters.
- Assuming coupling unification alone is sufficient. A model must also handle symmetry breaking, fermion masses, neutrino masses, anomaly cancellation, and rare-process bounds.
- Forgetting that precision electroweak data test loop corrections, not just the tree-level mass formulas shown in introductory derivations.
- Treating the Higgs vacuum value as arbitrary after fixing measured weak-interaction scales.
- Ignoring flavor mixing when moving from gauge eigenstates to observed quark and lepton states.
Connections
This page depends on nearly every earlier structural idea: chiral spinors for weak interactions, gauge symmetry for , spontaneous symmetry breaking for vector-boson masses, anomalies for consistency, and RG flow for unification tests. It is therefore a useful checkpoint page. If any formula here feels unmotivated, follow the links backward to the page that supplies the missing ingredient, then return to see how the Standard Model assembles those ingredients.