Path Integral Formulation
The path integral replaces the question "which path did the particle take?" with "how do all paths interfere?" In ordinary quantum mechanics this is already a radical idea. In quantum field theory it becomes almost unavoidable, because the histories being summed are field configurations over spacetime, and the formalism treats symmetries, perturbation theory, and tunneling in a unified way.
Zee emphasizes the path integral early because it gives a compact route from quantum mechanics to field theory. Instead of beginning with commutators and Hilbert-space operators, one starts with the classical action and integrates over configurations weighted by . Correlation functions, propagators, Feynman rules, and semiclassical approximations all come from the same generating functional.
Definitions
For a single quantum-mechanical coordinate , the transition amplitude is formally
For a scalar field,
The generating functional adds a source :
Correlation functions are obtained by functional differentiation:
The free scalar action can be written as a quadratic form:
where the prescription selects the Feynman contour and vacuum boundary condition.
Key results
The central identity behind perturbative QFT is the Gaussian integral. In finite dimensions,
The field-theory version gives the free generating functional:
where the Feynman propagator satisfies
Interactions can be represented as differential operators acting on . For theory,
This compact expression is the seed of Feynman diagrams. Each source derivative pulls down propagators; each interaction term supplies a vertex; combinatorics counts contractions.
The Euclidean path integral is obtained by Wick rotation :
Euclidean form makes the connection with statistical mechanics direct: resembles the Boltzmann weight . This is why the same field-theoretic tools apply to thermal systems and critical phenomena.
The path integral is best understood as a regulated construction before it is treated formally. In quantum mechanics one divides the time interval into small pieces, inserts complete sets of position eigenstates, and then lets . In field theory one can similarly imagine putting spacetime on a lattice, integrating over the field value at each lattice site, and only afterward asking for the continuum limit. This picture prevents a common misunderstanding: is not a magical measure with all properties obvious from notation. Its meaning is supplied by a regulator and by the limiting procedure.
Another important object is the connected generating functional
Functional derivatives of generate connected correlation functions. A further Legendre transform gives the effective action
The effective action is the quantum-corrected analog of the classical action. Its stationary point gives the expectation value of the field, and its expansion contains one-particle-irreducible vertices. This is the bridge from the path integral to loop-corrected equations of motion and the effective potential used in symmetry breaking.
The formalism also clarifies why classical physics emerges. When the action is large compared with , rapidly oscillating phases cancel except near stationary points of . Restoring for one sentence, the weight is ; the limit selects configurations satisfying . Quantum corrections are fluctuations around those stationary configurations.
Visual
| Object | Minkowski form | Euclidean form | Main use |
|---|---|---|---|
| Weight | Oscillatory vs damped integral | ||
| Time | Real-time scattering vs equilibrium | ||
| Propagator pole | prescription | elliptic inverse operator | Causality vs convergence |
| Analogy | interference phase | Boltzmann weight | Quantum amplitudes vs statistical averages |
Worked example 1: Free generating functional in one dimension
Problem: Evaluate the finite-dimensional analog
up to a -independent constant, assuming the contour is chosen so the Gaussian is defined.
Step 1: Complete the square:
Step 2: Add and subtract :
Step 3: Substitute:
Step 4: Shift the integration variable . The integral does not depend on :
Step 5: Check by differentiating:
The result is the finite-dimensional propagator. In field theory, becomes the inverse differential operator .
Worked example 2: Extracting the two-point function
Problem: Use
to compute .
Step 1: Define by , with
Step 2: Differentiate once:
Step 3: Differentiate twice:
Step 4: At , the first derivative of vanishes, so the second derivative of is
Step 5: Apply the factor and divide by :
Depending on convention, the object called may include the factor of . The checked point is structural: the two-point function is the inverse of the quadratic kernel in the action.
Code
import cmath
def gaussian_ratio(a, source):
# J-dependent part of integral exp(i/2 a x^2 + i J x).
return cmath.exp(-0.5j * source * source / a)
def second_derivative_at_zero(a, h=1e-4):
f0 = gaussian_ratio(a, 0.0)
fp = gaussian_ratio(a, h)
fm = gaussian_ratio(a, -h)
return (fp - 2 * f0 + fm) / (h * h)
a = 3.0
print("I(J)/I(0) at J=0.5:", gaussian_ratio(a, 0.5))
print("second derivative:", second_derivative_at_zero(a))
print("expected:", -1j / a)
Common pitfalls
- Thinking the path integral is an ordinary integral over one variable. It is a regulated limit of many coupled integrations.
- Ignoring boundary conditions. The prescription is not cosmetic; it selects the vacuum propagator.
- Forgetting normalization by when computing expectation values.
- Mixing Minkowski and Euclidean signs without Wick rotating the action consistently.
- Treating functional derivatives as mysterious. They are the continuum version of differentiating a Gaussian with respect to many sources.
- Assuming every formal manipulation of is legal. A regulator, boundary condition, and limiting prescription are part of the definition.
- Confusing , , and . They generate all diagrams, connected diagrams, and one-particle-irreducible vertices respectively.
Connections
Read this page before doing any serious diagram calculation. The key connection is that perturbation theory is not an independent set of rules; it is the expansion of the interacting path integral around a Gaussian. The same source method also reappears in effective actions, statistical mechanics, finite-temperature field theory, and semiclassical tunneling. When later pages use propagators, loop corrections, or one-particle-irreducible vertices, they are using objects that originate here.