Collective and Condensed Matter Field Theory
Quantum field theory is not only a theory of elementary particles. It is also the natural language of collective behavior, where the important excitations are not individual microscopic constituents but fields describing density, phase, magnetization, order parameters, and topological response. Zee devotes major space to this point because it changes how one understands the reach of QFT.
In condensed matter, the vacuum is replaced by a material ground state, Lorentz symmetry may be absent, and the speed of light is rarely the relevant velocity. Yet the same ideas recur: path integrals, symmetry breaking, Goldstone modes, vortices, solitons, effective actions, Chern-Simons terms, and renormalization group flow. The payoff is that field theory explains universality: many microscopic systems share the same long-distance behavior.
Definitions
A nonrelativistic bosonic field can be described by
For a condensate, write
The phase is the Goldstone-like field associated with broken particle-number phase symmetry.
The Landau-Ginzburg free-energy functional for a real order parameter is
At finite temperature, the Euclidean path integral is periodic in imaginary time:
For quantum Hall systems, a Chern-Simons term in dimensions has the schematic form
Key results
Superfluids show the field-theory connection between broken global symmetry and a gapless phase mode. Density fluctuations are often massive or less important at long distance, while the phase field controls low-energy hydrodynamics. Vortices occur because the phase is compact:
Landau-Ginzburg theory shows how critical phenomena reduce to an effective field theory for an order parameter. Near a critical point, the correlation length
becomes large, so microscopic details are washed out. RG flow explains why critical exponents are universal.
Superconductivity is a gauged version of condensate physics. The order parameter is charged, so the would-be Goldstone mode is absorbed by the electromagnetic field. The result is the Meissner effect: magnetic fields are expelled because the photon becomes massive inside the superconductor.
Fractional quantum Hall fluids show a different side of QFT: topology. Chern-Simons effective theory captures quantized Hall conductance and anyonic statistics without relying on local symmetry breaking in the usual Landau sense.
Finite temperature is another major bridge. In imaginary time, bosonic fields are periodic and fermionic fields are antiperiodic:
The allowed frequencies become discrete Matsubara frequencies. This turns thermal field theory into a close cousin of statistical mechanics while preserving much of the diagrammatic machinery. Phase transitions, response functions, and transport coefficients can all be studied with field-theoretic correlators.
Superconductivity adds gauge structure to the condensate story. A charged order parameter coupled to electromagnetism produces the Ginzburg-Landau functional
When condenses, the phase mode is absorbed into the electromagnetic field inside the material, giving a penetration depth for magnetic fields. This is the condensed-matter version of the Higgs mechanism.
The fractional quantum Hall effect is different because its low-energy response is topological rather than controlled by a local order parameter. A Chern-Simons action has no ordinary propagating photon mode in the bulk, but it fixes Hall conductance and the braiding statistics of quasiparticles. Edge states then carry gapless dynamics required by gauge invariance and anomaly inflow.
Disorder and replicas illustrate how far QFT methods can be stretched. Averaging over random potentials is hard because one needs the average of , not just . The replica trick studies and analytically continues . This method is formal, but it has generated deep field theories of localization, random matrices, and disordered critical points.
The common message is that the field is chosen for the scale of interest. It may be a phase, height, magnetization, density, gauge field, or matrix. The microscopic atoms remain real, but the long-distance theory uses the variables that fluctuate slowly.
Visual
| System | Effective field | Key term | Signature |
|---|---|---|---|
| Superfluid | phase | stiffness | sound mode, quantized vortices |
| Critical magnet | order parameter | free energy | universal scaling |
| Superconductor | charged condensate | Meissner effect | |
| Fractional Hall fluid | emergent gauge field | Chern-Simons term | anyons, quantized response |
| Surface growth | height field | stochastic field equation | dynamic scaling |
Worked example 1: Quantized circulation in a superfluid
Problem: Show why a superfluid vortex has quantized circulation when .
Step 1: The condensate wavefunction must be single-valued. Moving around a closed loop ,
after returning to the same point.
Step 2: The amplitude returns to itself, so the phase can only change by an integer multiple of :
Step 3: Write the phase change as a line integral:
Step 4: The superfluid velocity is proportional to the phase gradient:
in units with .
Step 5: Therefore the circulation is
The checked answer is quantized circulation. The integer is a topological winding number, stable unless the order parameter vanishes somewhere so the phase becomes undefined.
Worked example 2: Mean-field critical exponent in Landau theory
Problem: For
with , find the order parameter below and the mean-field exponent .
Step 1: Minimize the free-energy density:
Step 2: Set the derivative to zero:
Step 3: Solutions are
or
Step 4: Below , , so . The nonzero solution is real:
Step 5: Substitute :
Step 6: Compare with the definition
The checked answer is
in mean-field theory. Fluctuations modify this exponent below the upper critical dimension.
Code
import math
def mean_field_order_parameter(temp, tc, a=1.0, u=1.0):
r = a * (temp - tc)
if r >= 0:
return 0.0
return math.sqrt(-r / u)
tc = 1.0
for temp in [1.2, 1.0, 0.9, 0.75, 0.5]:
print(temp, mean_field_order_parameter(temp, tc, a=2.0, u=0.5))
Common pitfalls
- Assuming relativistic notation implies relativistic physics. Many condensed-matter field theories are nonrelativistic.
- Treating the order parameter as microscopic truth. It is a coarse-grained variable chosen for the long-distance problem.
- Forgetting compactness of a phase field, which is what makes vortices topological.
- Applying mean-field exponents too close to a critical point in low dimensions, where fluctuations matter.
- Confusing topological order with ordinary symmetry breaking. Quantum Hall fluids are not described by a local order parameter in the same way as magnets.
- Ignoring boundary modes in topological phases. A bulk Chern-Simons term often requires edge degrees of freedom for a complete physical description.
- Treating finite temperature as a minor modification of zero-temperature QFT. Periodic or antiperiodic imaginary-time boundary conditions change the allowed frequencies and infrared behavior.
- Forgetting that emergent fields need not be fundamental. Phonons, magnons, order parameters, and emergent gauge fields are effective variables selected by the phase and scale.
- Applying particle-physics intuition too literally. In a material, the medium defines preferred frames, velocities, cutoffs, and quasiparticle lifetimes.
Connections
This page is the reminder that QFT is a language for phases and excitations, not only for elementary particles. It should be read alongside symmetry breaking and RG: order parameters explain which field is slow, while RG explains why microscopic differences can disappear. The EFT page gives the general logic behind writing low-energy actions, and the path-integral page explains why Euclidean field theory and statistical mechanics share the same mathematical machinery.