Mean-Field and Landau Theory
Mean-field theory replaces a fluctuating environment by its average effect. It is often quantitatively imperfect near critical points, but it gives a transparent first description of spontaneous symmetry breaking, order-parameter equations, and critical exponents. Schwabl presents molecular-field ideas in magnetism and then develops Landau and Ginzburg-Landau theory as more general frameworks.
Landau theory is powerful because it does not require microscopic spin variables. It writes the free energy as a symmetry-constrained expansion in an order parameter. The coefficients depend on temperature and other control variables, and the stable phase is found by minimizing the free energy.
Definitions
The Curie-Weiss mean-field equation for an Ising ferromagnet is
The Landau free-energy density for a scalar order parameter with symmetry is
with for stability. If the quartic coefficient is negative, a stabilizing term is needed and first-order behavior can occur.
The equilibrium order parameter minimizes :
The susceptibility is
The Ginzburg-Landau functional includes spatial variations:
Key results
At , the stationary equation is
For , the stable solution is . For ,
Thus the mean-field exponent for the order parameter is
The susceptibility above is obtained by linearizing:
Below , expand around . The curvature is
so with a different amplitude. Hence
At , the equation of state is , so
The heat-capacity exponent is because Landau theory gives a finite jump rather than a power-law divergence.
The Ginzburg criterion estimates where fluctuations invalidate mean-field theory. Roughly, mean-field theory is self-consistent when order-parameter fluctuations inside a correlation volume are small compared with the squared mean order parameter. This tends to be better in high dimensions and worse near .
Landau theory is a local analytic expansion, so it assumes that the order parameter is small and that no other soft modes have been omitted. This is why it works best near continuous transitions above the upper critical dimension or outside the narrow fluctuation-dominated region. It also explains why symmetry is the starting point: terms absent by symmetry cannot be generated in the free energy unless the symmetry is explicitly broken.
The gradient term in Ginzburg-Landau theory penalizes rapid spatial variation. Linearizing about the disordered phase gives a Gaussian functional
In Fourier space this becomes
The correlation function is therefore controlled by
and the mean-field correlation length is
above . This gives and .
Landau theory also gives a clean criterion for first-order transitions. If a cubic term is allowed,
then two minima can coexist while the order parameter jumps. If a symmetry forbids the cubic term but the quartic coefficient becomes negative, a stabilizing sixth-order term produces a first-order transition. Thus discontinuity is not an accident; it is encoded in the allowed structure of the free-energy expansion.
The Curie-Weiss equation can be understood as a microscopic realization of Landau theory. Expanding
for small and produces an equation of state with the same powers of as the Landau derivative . The coefficient of changes sign at , while the cubic term stabilizes the ordered solution. This is why mean-field spin models and phenomenological Landau expansions share the same critical exponents.
Ginzburg-Landau theory adds interfaces. For two coexisting minima, a domain wall is a spatial solution interpolating between them. The gradient term sets a wall width of order the correlation length, and the free-energy cost per area is the surface tension. This connects phase-transition theory with nucleation, magnetic domains, and pattern formation.
External fields round the zero-field singularity. In the Ising case, explicitly favors one sign of , so the order parameter no longer changes sign discontinuously at . The critical isotherm is therefore measured by tuning temperature to and varying the field, not by crossing the transition at nonzero field.
Landau coefficients are phenomenological unless derived from a microscopic model. Their signs and temperature dependence carry physical content, but the expansion is not unique without specifying normalization of the order parameter.
The normalization issue is harmless for exponents but important for amplitudes. Rescaling changes , , and , while leaving predictions such as unchanged. This is why Landau theory is best at classifying qualitative behavior and exponent values, not at predicting precise material constants without microscopic input.
Despite its limits, Landau theory remains a useful first pass because it forces the analyst to identify the order parameter, symmetry, allowed couplings, and stability conditions. Those same ingredients are required before applying more sophisticated RG or numerical methods.
In that sense, Landau theory is often the grammar of the problem even when it is not the final quantitative solution.
Visual
| Exponent | Definition | Mean-field value |
|---|---|---|
| at | ||
| at |
Landau f(m)
t > 0: t < 0:
f f
^ ^
| \_/ | \_/ \_/
+--> m +-------> m
0 -m0 +m0
Worked example 1: Spontaneous magnetization in Landau theory
Problem: For
with , find the stable equilibrium at .
Method:
- Differentiate:
- Stationary points satisfy
- If , the second solution is not real. The only stationary point is .
- Check stability:
At and , this is positive, so is stable. 5. If , has negative curvature and is unstable. The stable minima are
Checked answer: the order parameter grows continuously as below .
Worked example 2: Mean-field susceptibility amplitude ratio
Problem: Compute the ratio above and below in the same Landau model at .
Method:
- The equation of state with field is
- Differentiate with respect to :
Thus
- Above , and :
- Below , :
Since ,
- Compare at equal :
Checked answer: the exponent is the same on both sides, but amplitudes differ.
Code
import numpy as np
def landau_order_parameter(t, a=1.0, b=1.0):
if t >= 0:
return 0.0
return np.sqrt(-a * t / b)
def landau_susceptibility(t, a=1.0):
if t > 0:
return 1.0 / (a * t)
if t < 0:
return 1.0 / (-2.0 * a * t)
return np.inf
for t in [0.2, 0.05, -0.05, -0.2]:
print(t, landau_order_parameter(t), landau_susceptibility(t))
Common pitfalls
- Forgetting to include all symmetry-allowed terms. A cubic term is forbidden by symmetry but allowed in other transitions.
- Assuming automatically. If , a stabilizing sixth-order term changes the transition character.
- Confusing the Landau exponent with inverse temperature .
- Trusting mean-field exponents too close to the critical point in low-dimensional systems.
- Minimizing the free energy without checking second derivatives and global stability.