Symmetry Breaking, Goldstone Bosons, and Higgs Physics
Symmetry is often most powerful when the equations have it but the state does not. In spontaneous symmetry breaking, the Lagrangian is symmetric while the vacuum chooses one of many equivalent minima. Small fluctuations along the valley of minima become gapless Nambu-Goldstone modes for global continuous symmetries. When the broken symmetry is gauged, those modes can be absorbed into gauge fields, giving massive vector bosons through the Anderson-Higgs mechanism.
This cluster of ideas is central to both particle physics and condensed matter. The pion is understood as an approximate Goldstone boson of chiral symmetry breaking. Superconductivity and the electroweak theory both use the Higgs mechanism. Zee treats these topics as one conceptual family: a vacuum is not passive; its structure determines the particle spectrum.
Definitions
A symmetry transformation maps fields to fields while preserving the action:
The vacuum spontaneously breaks the symmetry if
and the expectation value is not invariant under the full symmetry group.
For a complex scalar with global symmetry,
where and . The minima satisfy
A convenient parameterization is
Here is the radial mode and is the angular Goldstone mode.
For a gauged , replace
Key results
Goldstone's theorem states that every spontaneously broken continuous global symmetry generator produces a massless excitation, subject to standard assumptions such as locality and Lorentz invariance. The intuitive proof is that moving along the degenerate vacuum manifold costs no potential energy, so the angular fluctuation has no mass term.
For the complex scalar potential above, expand around a vacuum. Let
to leading order. The radial field gets a nonzero mass, while the angular field is massless:
up to convention-dependent normalization of the potential.
In the Higgs mechanism, the angular field is not a physical massless particle. The covariant derivative term contains
so the gauge boson mass is
The gauge field gains a longitudinal polarization, and the would-be Goldstone field is absorbed into the massive vector field. Gauge symmetry is not destroyed; it is hidden by the choice of variables and gauge.
The vacuum manifold is often the most compact way to understand the low-energy excitations. If a group is broken to a subgroup , the degenerate vacua are described by the coset space
The number of broken generators is the dimension of this space, and in a relativistic theory it equals the number of Goldstone bosons for global symmetries. Topological defects are also classified by the shape of the vacuum manifold. Disconnected vacua can support domain walls, circular vacuum manifolds can support vortices, and more complicated manifolds can support monopoles or textures.
The effective potential refines the classical picture. Quantum corrections shift the relation between Lagrangian parameters and the location of the vacuum. Instead of minimizing the classical potential alone, one studies
whose derivatives generate zero-momentum one-particle-irreducible diagrams. The curvature of at its minimum gives loop-corrected masses, while its shape can reveal radiative symmetry breaking or metastable vacua.
In gauge theories, gauge choice can obscure the counting of degrees of freedom. Before symmetry breaking, a massless vector in four dimensions has two physical polarizations, and a complex scalar has two real degrees of freedom. After the Higgs mechanism, a massive vector has three polarizations and one real Higgs scalar remains. The number of physical degrees of freedom is unchanged:
This accounting is the cleanest way to remember what happened to the Goldstone mode.
Approximate symmetry breaking is also common. If a symmetry is nearly exact but explicitly broken by small terms, the Goldstone boson becomes a pseudo-Goldstone boson. Its mass is controlled by the explicit breaking, which is why light pions indicate approximate chiral symmetry rather than exact masslessness.
Visual
| Symmetry type | Broken vacuum gives | Spectrum signal | Example |
|---|---|---|---|
| Discrete global | domain walls possible | no Goldstone theorem | real double well |
| Continuous global | Goldstone boson | massless angular mode | superfluid phase mode |
| Local gauge | Higgs mechanism | massive vector boson | electroweak |
| Approximate global | pseudo-Goldstone boson | light but not massless | pions |
Worked example 1: Goldstone mode in a complex scalar
Problem: For
find the vacuum radius and identify radial and angular masses.
Step 1: Let . Then
Step 2: Differentiate:
Step 3: Set equal to zero:
Thus
Step 4: The nonzero circle is the minimum. Choose
Therefore
Step 5: The potential depends only on , so moving in the angular direction along the circle does not change to quadratic order:
Step 6: The radial curvature is nonzero. Using the radial second derivative,
At ,
With canonical normalization this corresponds to a massive radial mode; convention choices set the precise factor. The checked qualitative result is one massive radial mode and one massless Goldstone mode.
Worked example 2: Gauge boson mass from a Higgs vacuum
Problem: In a gauge theory with
in unitary gauge, find the gauge boson mass term.
Step 1: Write the kinetic term:
Step 2: For the constant vacuum part, , so
Step 3: Square the vacuum contribution:
Step 4: Compare with the Proca mass form:
Step 5: Match coefficients:
Therefore
The checked answer is that the gauge boson becomes massive while the angular scalar degree of freedom supplies its longitudinal polarization.
Code
import math
def mexican_hat_parameters(mu, lam, e=0.0):
v = mu / math.sqrt(lam)
radial_mass = math.sqrt(2) * mu
gauge_mass = e * v
return v, radial_mass, gauge_mass
for e in [0.0, 0.3, 0.7]:
v, mh, mA = mexican_hat_parameters(mu=2.0, lam=0.5, e=e)
print(f"e={e}: v={v:.3f}, radial mass={mh:.3f}, gauge mass={mA:.3f}")
Common pitfalls
- Saying the symmetry of the Lagrangian is broken explicitly when the vacuum is what fails to respect it.
- Expecting a Goldstone boson for a broken discrete symmetry. Goldstone's theorem requires a continuous symmetry.
- Treating gauge symmetry as literally broken in the same way as a global symmetry. Gauge redundancy remains; the spectrum is reorganized.
- Forgetting that approximate symmetries produce pseudo-Goldstone bosons with small masses.
- Expanding around when the true vacuum lies at nonzero field value.
- Counting fields before and after the Higgs mechanism without counting physical degrees of freedom. Gauge redundancy makes the naive component count misleading.
- Assuming every flat direction is exact. Quantum corrections, explicit breaking terms, gauge interactions, or boundary conditions can lift a classical degeneracy.
- Confusing the order parameter with a directly observable particle. The vacuum expectation value labels the phase; excitations are fluctuations around it.
Connections
Symmetry breaking connects the scalar model, gauge theory, condensed matter, and electroweak physics. The real scalar double well teaches discrete breaking; the complex scalar teaches Goldstone modes; the gauged complex scalar teaches the Higgs mechanism; superconductivity gives a material realization; the electroweak theory gives the particle-physics realization. Keep track of whether the symmetry is global, local, exact, or approximate, because the spectrum changes in each case.