From classical to quantum — Dirac correspondence and the path integral
From classical to quantum — Dirac correspondence and the path integral
Classical Poisson brackets pass over to quantum commutators, and a sum over all paths collapses back to one classical trajectory in the small- limit — two bridges across the same river.
Opening
A reader who has followed analytical mechanics to its end naturally asks: how does this framework turn into quantum mechanics? This chapter crosses that gap with two bridges — Dirac’s canonical quantization and Feynman’s path integral. The two start from different banks but reach the same Schrödinger equation. By the end of the chapter the reader should be able to write in one line how becomes , and to explain via the stationary-phase argument why the classical action appears as a phase in quantum mechanics. We keep in the formulas rather than setting , and write everything in SI units.
Main 1 — The Dirac correspondence
In 1925 Dirac (P. A. M. Dirac, 1902–1984) proposed the following dictionary. The Poisson bracket — the antisymmetric differential operation on classical phase-space functions introduced in Chapter 4 — corresponds in quantum mechanics to the commutator of two self-adjoint operators, via
Note where (h-bar, the reduced Planck constant, ) sits. For the right-hand side not to diverge in the classical limit , the commutator itself must be of order . The simplest instance quantizes to the celebrated canonical commutation relation
And the Hamiltonian equation of motion passes directly over to the Heisenberg equation
The classical equation of motion becomes the quantum equation of motion by changing exactly one symbol — to .
That said, the Dirac correspondence is an ansatz, not a derivation. At the level of polynomials in up to degree two — positions, momenta, and their products — it works cleanly. At higher degrees (say ) the result depends on the operator-ordering convention chosen at quantization time: Weyl-symmetric ordering, normal ordering, anti-normal ordering all give different answers. This ambiguity is intrinsic and persists into quantum field theory; the dictionary alone does not determine the classical-to-quantum map.
Main 2 — Feynman’s path integral
In 1948 Feynman (R. P. Feynman, 1918–1988) built a second bridge, independent of the Dirac dictionary. The amplitude for a particle to travel from to is written as a sum over every possible path:
Here is the formal measure over all continuous paths joining and with the endpoints held fixed, and is the classical action from Volume I, Chapter 1. Each path contributes a single unit-modulus complex number whose phase is its own action; summing those contributions over all paths gives the quantum amplitude .
Three points are worth highlighting. First, the sum runs over all paths — smooth, kinked, and nowhere-differentiable. Second, every path contributes with the same magnitude ; only the phases differ. Third, the classical path is the one for which — that is, the path along which the action is stationary. The next section explains how these three facts combine to produce the classical limit.
Main 3 — Stationary phase and the recovery of classical mechanics
To say that is small is to say that the phase oscillates rapidly. Rapidly oscillating integrals cancel against themselves and tend to zero — with one exception. At a stationary point of , where the derivative vanishes, the phase varies slowly, and the contribution survives. This is the heart of the stationary-phase approximation, and in the path integral the stationary path is precisely the classical path .
Expanding the action about the classical path gives
The linear term vanishes by the defining property of , leaving the quadratic term. Performing the Gaussian integral over the fluctuations yields an amplitude of the form
The phase is the classical action itself, and the prefactor is the determinant of the second variation — the Van Vleck determinant. In the limit , all path contributions except this one oscillate themselves into cancellation, and a single classical trajectory remains.
For the free particle the computation reduces to one line. With the classical path is the uniform straight line (with ), and its action is
The phase of the free-particle propagator obtained by solving the Schrödinger equation directly is exactly this expression. The two bridges — the Schrödinger equation produced by the Dirac correspondence and Feynman’s path integral — meet at the same point on the far bank.
In Python
# Free-particle path integral: random paths whose phase sum lands near the classical action.
# m = hbar = 1. Endpoints x_i = 0, x_f = 1, T = 1. Classical action S_cl = 0.5.
import numpy as np
m, hbar = 1.0, 1.0
x_i, x_f, T = 0.0, 1.0, 1.0
N = 20 # number of time slices
dt = T / N
N_path = 5000 # number of sampled paths
sigma = 0.5 # std-dev of interior Gaussian samples
rng = np.random.default_rng(0)
# Each path: [x_i, x_1, ..., x_{N-1}, x_f]
interior = rng.normal(0.0, sigma, size=(N_path, N - 1))
left = np.full((N_path, 1), x_i)
right = np.full((N_path, 1), x_f)
paths = np.concatenate([left, interior, right], axis=1)
# Action S = sum_n (m/2) (x_{n+1} - x_n)^2 / dt
dx = np.diff(paths, axis=1)
S = 0.5 * m * np.sum(dx**2, axis=1) / dt
# Phase sum sum_path exp(i S / hbar)
amp = np.sum(np.exp(1j * S / hbar).astype(np.complex128))
phase = np.angle(amp)
S_cl = m * (x_f - x_i)**2 / (2 * T)
print(f"classical action S_cl = {S_cl:.4f} rad")
print(f"sample phase arg(sum) = {phase:.4f} rad")
print(f"difference = {phase - S_cl:.4f} rad")
The sampling measure is unnormalized, so the magnitude of the sum is meaningless; the argument of the complex sum, however, lands within a fraction of a radian of the classical action . Even after summing over all paths, the argument of the total concentrates on the phase of a single classical trajectory — the cleanest numerical fingerprint of the stationary-phase argument.
To the next chapter
Chapter 10: Where to next — paths beyond this book is the closing chapter. Having crossed the two bridges of this volume, the reader can next move toward quantum field theory, the partition function in statistical mechanics, or gauge theory. The closing chapter sketches each of these directions and provides a map to topics that this book has, by design, left untouched.