Scalar Phi-Four Theory
Real scalar theory is the laboratory model of perturbative quantum field theory. It has a kinetic term, a mass term, and the simplest nontrivial local self-interaction in four spacetime dimensions. Because it avoids spin, gauge redundancy, and group theory, it lets the central machinery stand in the open: propagators, vertices, loops, divergences, counterterms, and running couplings.
The theory is also physically flexible. In relativistic particle physics it models contact scattering and spontaneous symmetry breaking. In condensed matter, its Euclidean version becomes the Landau-Ginzburg theory of critical phenomena. Zee uses this kind of model repeatedly because it is simple enough to calculate with and rich enough to display the logic of QFT.
Definitions
The Lagrangian density for a real scalar with quartic interaction is
The free propagator in momentum space is
The four-point vertex is
The classical potential is
For stability at large , one wants . If , the minimum is at . If , the symmetric point becomes unstable and two nonzero minima appear, making the same model a prototype for spontaneous symmetry breaking.
The -point correlation functions are generated from
Key results
The field equation is nonlinear:
Perturbatively, the first nontrivial correction to the two-point function is the tadpole loop. The first correction to the four-point amplitude is the bubble diagram. These two diagrams already show the two main renormalization targets: the mass and the coupling.
The superficial degree of divergence in four-dimensional theory is
where is the number of external legs. This follows from and the graph identities for quartic vertices. It means that the two-point function is quadratically divergent by power counting, the four-point function logarithmically divergent, and higher-point functions superficially convergent. This is why only a finite list of counterterms is needed:
At tree level the amplitude is constant, but loops introduce momentum dependence and scale dependence. The theory is therefore a compact testing ground for the idea that measured parameters depend on the scale at which they are measured.
The theory is also useful because the same Lagrangian supports several physical interpretations depending on parameters and signature. With and Minkowski time, it describes a massive scalar particle with a short-range contact self-interaction. With , the classical potential has degenerate minima and becomes the simplest algebraic model of spontaneous symmetry breaking. After Wick rotation to Euclidean signature, the action resembles a statistical free energy for an order parameter, and the parameter plays the role of distance from a critical point.
Renormalization conditions can be stated directly in this model. One may demand that the exact two-point function has a pole at with residue one, and that the four-point amplitude at a specified symmetric momentum equals . These requirements determine , , and order by order. Other schemes choose different finite parts, but all schemes agree on physical observables after parameters are translated.
The model also illustrates why "simple" does not mean "trivial." In four dimensions the coupling is marginal at tree level, so loop effects decide its scale dependence. In dimensions below four, the quartic coupling becomes relevant and drives nontrivial critical behavior. In dimensions above four, it becomes irrelevant in the RG sense, and the free Gaussian fixed point dominates long-distance behavior unless other scales intervene.
Finally, theory is a warning about notation. The same symbol may denote a bare coupling, a renormalized coupling at scale , or a measured low-energy parameter. A calculation is incomplete until it states which one is being used and how it is fixed.
Visual
| Quantity | Symbol | Tree-level expression | Loop sensitivity |
|---|---|---|---|
| Propagator | mass and field-strength shifts | ||
| Vertex | four-point | logarithmic correction in | |
| Potential | effective potential | ||
| Counterterms | absent in bare tree theory | chosen by renormalization conditions |
Worked example 1: Classical minima and small oscillations
Problem: Let
Find the minima and the mass of small fluctuations about one minimum.
Step 1: Differentiate the potential:
Step 2: Set this equal to zero:
Step 3: The stationary points are
Define
Step 4: Use the second derivative:
At this is , so the origin is unstable. At ,
Step 5: The small fluctuation has mass squared
The checked result is two degenerate minima at and a stable excitation of mass around either one.
Worked example 2: Superficial divergence in phi-four theory
Problem: Derive for a connected graph in four spacetime dimensions.
Step 1: Each loop integral contributes four powers of momentum:
Step 2: Each internal scalar propagator behaves as at large momentum, contributing
Thus
Step 3: For a connected graph,
Substitute:
Step 4: Count line ends:
Therefore
Step 5: Substitute:
The checked answer is . A two-point graph has , a four-point graph has , and a six-point graph has .
Code
def superficial_degree_phi4(external_legs, spacetime_dim=4):
if spacetime_dim != 4:
raise ValueError("this shortcut is for four spacetime dimensions")
return 4 - external_legs
for external in [2, 4, 6, 8]:
degree = superficial_degree_phi4(external)
verdict = "divergent" if degree >= 0 else "superficially convergent"
print(f"E={external}: D={degree}, {verdict}")
Common pitfalls
- Forgetting the in the interaction and then assigning the wrong vertex factor.
- Treating as optional for a stable potential. Without higher stabilizing terms, negative makes the potential unbounded.
- Confusing the sign of in the Lagrangian with the sign in the potential.
- Assuming every divergent graph requires a new physical parameter. Renormalizability means divergences can be absorbed into existing terms.
- Ignoring disconnected vacuum bubbles when deriving diagrams; they cancel from normalized correlators but matter for vacuum energy discussions.
- Using the same symbol for bare and renormalized quantities without saying which is meant. In loop calculations, , , and a measured scattering coupling are different until a renormalization condition relates them.
- Forgetting that the same polynomial potential has different physics in different regimes. Positive gives a symmetric massive phase; negative requires expanding around a nonzero vacuum; Euclidean signature turns the model into a critical-phenomena workhorse.
- Treating power counting as the whole calculation. It predicts possible divergence, not the finite part, symmetry factor, threshold structure, or scheme-dependent subtraction.
- Assuming the classical potential alone determines the quantum phase diagram. Loop corrections can shift masses, couplings, and the effective potential.
- Expanding around an unstable point and then interpreting the resulting negative mass squared as a particle mass.
Connections
Use this page as the controlled sandbox for the rest of the subject. Nearly every later complication has a scalar prototype: propagators come from the quadratic term, vertices from the quartic term, counterterms from divergent loops, symmetry breaking from the sign of , and RG flow from the scale dependence of . Once these mechanisms are clear in theory, spinors and gauge fields add structure without changing the basic perturbative logic.