Gauge Invariance and QED
Gauge invariance is a redundancy with physical force. In electromagnetism the vector potential has more components than the photon has physical polarizations, and gauge symmetry identifies descriptions that differ by a derivative. Quantum electrodynamics turns this redundancy into a principle that fixes how charged matter couples to light and protects the photon from acquiring a mass.
QED is the cleanest gauge theory because its group is abelian, . The electron field carries charge, the photon field mediates the interaction, and the local phase symmetry determines the covariant derivative. Zee's discussion uses QED to show how a symmetry can be both a computational constraint and a physical explanation for why a force has the structure it has.
Definitions
The QED Lagrangian is
with
The local gauge transformation is
The interaction term is
The photon propagator depends on gauge choice. In Feynman gauge,
The electron propagator is
and the electron-photon vertex is
Key results
Gauge invariance forbids a photon mass term
because is not invariant under . This is the field-theory expression of the photon's masslessness in ordinary QED.
Current conservation follows from the electron equations of motion:
The same conservation law appears diagrammatically as a Ward identity. For a photon attached to a conserved current, replacing the photon polarization by its momentum gives zero:
This identity ensures that unphysical photon polarizations do not affect measured amplitudes.
Gauge fixing is required for quantization because the path integral over otherwise integrates repeatedly over gauge-equivalent configurations. A common covariant gauge-fixing term is
In abelian QED, ghosts decouple from physical processes. In nonabelian gauge theory they become essential.
The Ward-Takahashi identity is the off-shell version of the Ward identity and relates the electron-photon vertex to the inverse electron propagator. Schematically,
This equation is more than a formal constraint. It forces a relationship between charge renormalization, electron wavefunction renormalization, and vertex corrections. In ordinary QED notation it leads to the equality between the vertex and electron field renormalization constants in gauge-invariant schemes.
Gauge fixing does not remove gauge invariance from the physics. It chooses one representative from each equivalence class so the kinetic operator can be inverted. Different values of the covariant gauge parameter change intermediate propagators:
Physical cross sections cannot depend on . If a result does depend on the gauge parameter, something has been omitted, usually a diagram, counterterm, or external-state condition.
QED also introduces infrared structure. Because the photon is massless, amplitudes with charged particles can have soft and collinear sensitivity. A process with no emitted photon and the same process with an undetected very soft photon are experimentally inseparable. Inclusive observables, which sum over degenerate soft-photon final states, are the quantities that become finite. This is another example of a field-theory lesson: the mathematically sharp object must match what can actually be measured.
Visual
| Rule | QED expression | Meaning |
|---|---|---|
| Electron propagator | charged fermion propagation | |
| Photon propagator | gauge-fixed massless vector propagation | |
| Vertex | photon couples to electric current | |
| Gauge condition | or variant | removes redundant description |
| Ward identity | gauge redundancy cancels unphysical modes |
Worked example 1: Gauge invariance of the covariant derivative
Problem: Show that transforms like under
Step 1: Apply the transformed derivative:
Step 2: Substitute :
Step 3: Differentiate the product:
Step 4: Add the gauge-field terms:
Step 5: The two terms cancel:
The checked answer is
Therefore is gauge invariant.
Worked example 2: Ward identity for a simple current
Problem: Let a photon with momentum couple to an external electron line. Show that contraction with vanishes between on-shell spinors.
Step 1: The current factor is
Step 2: Contract with :
Step 3: Since ,
Thus
Step 4: Use the on-shell Dirac equations:
Step 5: Replace each momentum slash acting on its spinor by :
The checked answer is . This is the external-line version of the Ward identity.
Code
def qed_vertex_factor(charge=1.0):
# Return symbolic components of -i e gamma^mu.
return [f"-i*{charge}*gamma^{mu}" for mu in range(4)]
def gauge_parameter_gradient(alpha_values, dx):
return [(alpha_values[i + 1] - alpha_values[i]) / dx for i in range(len(alpha_values) - 1)]
alpha = [0.0, 0.1, 0.15, 0.25]
print("vertex:", qed_vertex_factor(0.3028))
print("discrete d alpha:", gauge_parameter_gradient(alpha, dx=0.5))
Common pitfalls
- Calling gauge symmetry an ordinary physical symmetry. It is a redundancy in description, though it has strong physical consequences.
- Adding a photon mass term to QED without breaking gauge invariance or introducing a Higgs mechanism.
- Forgetting to fix gauge before inverting the photon kinetic operator.
- Treating longitudinal photon polarizations as physical external states.
- Applying Ward identities off shell without the extra terms that appear away from external physical states.
- Reading gauge fixing as a physical choice. It is a calculational choice; gauge-parameter dependence must cancel from physical observables.
- Ignoring infrared inclusiveness. In a theory with massless photons, a measurable charged-particle cross section often requires summing over unobserved soft radiation.
- Breaking gauge invariance with a regulator or cutoff and then trusting the answer. If the regulator violates the symmetry, the required restoring counterterms or Ward-identity checks must be explicit.
- Using a conserved-current argument while external fermions are off shell. Off-shell identities involve inverse propagators, not just zero.
- Forgetting that charge conservation is tied to the exact local gauge structure.
Connections
This page is the abelian training ground for all later gauge theory. The photon has no self-interaction, ghosts decouple, and the Ward identity is relatively transparent, so QED is the place to learn what gauge redundancy does before adding nonabelian complications. The same concepts return in Yang-Mills theory with stronger consequences: self-coupled gauge bosons, nontrivial ghosts, asymptotic freedom, and confinement. The renormalization pages explain how QED loop corrections define the physical electric charge.