Dirac Fields and Spinors
Scalar fields describe spin-zero quanta, but much of matter is fermionic. Electrons, quarks, neutrinos, and many quasiparticles require spinor fields, anticommutation, and a relativistic wave equation that is first order in derivatives. The Dirac equation is the gateway: it combines special relativity, spin, antiparticles, and the algebraic structure that later supports gauge theory.
The spinor part of QFT is often where notation first becomes dense. The central physical idea is simpler than the notation suggests. A Dirac field is an operator-valued field whose excitations include particles and antiparticles, and the minus signs required by Fermi statistics are implemented by anticommutators or Grassmann variables. Zee's sequence from the Dirac equation to fermion diagrams is meant to make this algebra feel like a necessity rather than a trick.
Definitions
The Dirac Lagrangian is
The gamma matrices satisfy the Clifford algebra
The Euler-Lagrange equation for gives the Dirac equation:
In momentum space, plane-wave solutions satisfy
Quantization uses equal-time anticommutation relations:
The free fermion propagator is
Fermionic path integrals use Grassmann variables, which anticommute:
Key results
The Dirac equation squares to the Klein-Gordon equation. Multiply the operator by :
Because is symmetric, only the anticommutator of gamma matrices contributes:
Thus every Dirac component satisfies , while the full spinor also carries spin and particle-antiparticle structure.
The conserved current associated with global phase symmetry is
This current is the one that couples to electromagnetism. Replacing by a covariant derivative gives the QED interaction
The sign structure of closed fermion loops is another key result: every closed fermion loop contributes an additional minus sign. This is not optional bookkeeping; it follows from moving Grassmann variables or fermionic operators past each other to perform contractions.
Spinor fields also split naturally into chiral parts. Define projectors
Then
For a massless fermion the left- and right-handed pieces decouple. This is why chiral symmetry is visible in the massless Dirac Lagrangian and why anomalies are so important: a symmetry that looks exact in the classical massless theory may fail after quantization. In the electroweak theory, chirality is not just notation. Left-handed fermions transform as weak doublets, while right-handed fermions are weak singlets, so the gauge interaction itself distinguishes the two chiralities.
Another useful distinction is between Dirac, Weyl, and Majorana descriptions. A Dirac spinor has enough components to describe a charged fermion with a distinct antiparticle. A Weyl spinor is chiral and is the natural language for massless or chiral gauge theories. A Majorana spinor satisfies a reality condition and can describe a neutral fermion that is its own antiparticle, if the gauge charges allow such a condition. The same physical fermion may be described in different notations, but the allowed mass terms depend sharply on its gauge representation.
The spin-statistics connection is deeper than the algebraic rule "use anticommutators." Relativistic causality requires fermionic fields to anticommute at spacelike separation. If one tried to quantize a Dirac field with commutators, the Hamiltonian or causal structure would fail. This is why the minus signs in fermion diagrams should be read as a structural feature of relativistic QFT, not as a convention chosen for convenience.
Visual
| Object | Bosonic scalar | Dirac fermion |
|---|---|---|
| Field | ||
| Equation | ||
| Quantization | commutators | anticommutators |
| Propagator numerator | ||
| Statistics | Bose-Einstein | Fermi-Dirac |
| Closed loop sign | no universal extra sign | extra minus sign |
Worked example 1: Squaring the Dirac equation
Problem: Show that solutions of the free Dirac equation also satisfy the Klein-Gordon equation.
Step 1: Start from
Step 2: Act on the left with the conjugate operator:
Step 3: Expand the product. Since is constant, the cross terms cancel:
The derivative part is
Step 4: Use symmetry of :
Step 5: Use the Clifford algebra:
Therefore the equation becomes
The checked answer is
The Dirac equation is a square root of the relativistic dispersion relation, but with spinor structure included.
Worked example 2: Conserved Dirac current
Problem: Show that is conserved for a free Dirac field.
Step 1: Write the Dirac equation:
Step 2: Write the adjoint equation. Taking the Hermitian adjoint and multiplying by gives
with the derivative acting to the left.
Step 3: Compute the divergence:
Step 4: Use the adjoint equation:
so
Step 5: Use the original equation:
so
Step 6: Add both terms:
The checked answer is .
Code
def clifford_check_1_plus_1():
# A tiny real representation for signature (+,-):
# gamma0^2 = +1, gamma1^2 = -1, gamma0 gamma1 + gamma1 gamma0 = 0.
gamma0 = [[1, 0], [0, -1]]
gamma1 = [[0, 1], [-1, 0]]
def matmul(a, b):
return [[sum(a[i][k] * b[k][j] for k in range(2)) for j in range(2)] for i in range(2)]
def add(a, b):
return [[a[i][j] + b[i][j] for j in range(2)] for i in range(2)]
print("gamma0^2 =", matmul(gamma0, gamma0))
print("gamma1^2 =", matmul(gamma1, gamma1))
print("anticommutator =", add(matmul(gamma0, gamma1), matmul(gamma1, gamma0)))
clifford_check_1_plus_1()
Common pitfalls
- Treating spinors as ordinary vectors under spacetime rotations. Spinors transform under a spin representation, not the vector representation.
- Forgetting the bar in . The Lorentz scalar mass term is , not .
- Using commutators for fermion quantization. Fermions require anticommutators to produce Fermi statistics and a stable spectrum.
- Losing the extra minus sign from a closed fermion loop.
- Assuming the Dirac equation replaces the Klein-Gordon equation. It refines it; each component still satisfies the relativistic mass shell condition.
- Confusing chirality with helicity in all circumstances. They coincide for massless fermions, but massive fermions mix left and right chiral components through the mass term.
- Writing a mass term without checking gauge charges. Dirac, Majorana, and Yukawa masses obey different representation constraints.
Connections
Spinor notation pays off in the pages on QED, anomalies, and electroweak theory. QED uses the vector current , anomalies use the axial current , and electroweak theory uses chiral projections to couple left- and right-handed fermions differently. If a later calculation has a mysterious trace over gamma matrices or an unexpected minus sign from a loop, the explanation is usually in the spinor and Grassmann structure summarized here.