Irreversibility, Master Equations, and Finite-Temperature Field Theory
Microscopic mechanics is reversible in many basic models, but macroscopic thermodynamics is irreversible. Schwabl's final chapter examines this tension through recurrence, coarse-graining, Brownian models, master equations, phase-space volume, Gibbs and Boltzmann entropy, and the approach to equilibrium.
This page also includes a short supplementary bridge to finite-temperature quantum field theory, as requested for SJ Wiki cross-linking. The bridge uses the same density-matrix object and rewrites it as imaginary-time evolution. It is not the focus of Schwabl's main text, but it is the standard connection from statistical mechanics to thermal field theory.
Definitions
Fine-grained Gibbs entropy for a classical density is
Under exact Liouville evolution, is constant. Boltzmann entropy instead assigns entropy to a macrostate :
where is the phase-space volume compatible with the macrostate.
A continuous-time master equation for probabilities is
where is the transition rate from to .
Detailed balance with equilibrium distribution is
For finite-temperature quantum systems,
In imaginary time , thermal traces are represented by evolution over interval .
Key results
Liouville's theorem preserves phase-space volume and fine-grained entropy, so irreversible entropy increase cannot be obtained merely by rewriting exact microscopic equations. It enters through coarse-graining, special initial conditions, instability to perturbations, or kinetic assumptions such as molecular chaos.
Poincare recurrence says that a finite isolated Hamiltonian system with bounded phase-space volume returns arbitrarily close to its initial state after sufficiently long times. For macroscopic systems, recurrence times are astronomically large and do not undermine practical thermodynamics. The key point is logical rather than experimental: exact microscopic reversibility and macroscopic irreversibility describe different levels of description.
For a master equation with detailed balance, the relative entropy
decreases monotonically under broad conditions. This is a discrete stochastic analogue of relaxation to equilibrium.
Boltzmann's H-theorem has the same structure: entropy increases after assuming a kinetic description that discards pre-collision correlations. The apparent paradoxes, such as Loschmidt's reversibility objection, are resolved by recognizing which step introduces time-asymmetric statistical information.
Supplementary bridge to finite-temperature field theory: the canonical partition function resembles a real-time quantum evolution operator with imaginary time:
Bosonic fields are periodic in imaginary time,
while fermionic fields are antiperiodic,
The corresponding Matsubara frequencies are
This is the field-theory version of the same Bose and Fermi statistical distinction developed in the ideal quantum gas.
The distinction between Gibbs and Boltzmann entropy is often the cleanest way to discuss irreversibility. Gibbs entropy belongs to a probability density. If that density is evolved exactly, Liouville or unitary evolution preserves its fine-grained information. Boltzmann entropy belongs to a macrostate: a large region of phase space specified by coarse variables. A system prepared in a small, low-entropy macroregion will typically move into larger macroregions simply because they occupy overwhelmingly more phase-space volume. This is a probabilistic statement about typicality, not a strict theorem forbidding fluctuations.
Large fluctuations are possible but rare. If an entropy decrease of size requires entering a macroregion whose phase volume is smaller by , the waiting time is correspondingly enormous for macroscopic . This explains why the second law is effectively certain in daily thermodynamics while remaining statistical at the microscopic level.
Master equations make the coarse-graining explicit by replacing microscopic trajectories with transition rates between states or macrostates. Detailed balance ensures the correct equilibrium distribution, but relaxation also depends on connectivity and spectral gaps of the rate matrix. Systems with bottlenecks, metastable states, or glassy landscapes can obey detailed balance and still equilibrate extremely slowly.
The imaginary-time field-theory bridge should be read as a change of representation, not as a new postulate. The same thermal density matrix that defines the canonical ensemble becomes a path integral on a compact Euclidean time interval. Boundary conditions encode quantum statistics, and Matsubara sums replace continuous frequency integrals. This is why finite-temperature QFT naturally reuses statistical-mechanical ideas: partition functions, correlation functions, response, and symmetry breaking all persist, but the degrees of freedom are fields rather than particles in fixed single-particle levels.
The arrow of time in statistical mechanics is therefore not a new microscopic force. It is a statement about preparation, typicality, coarse variables, and the overwhelming phase-space dominance of equilibrium macrostates. Low-entropy initial conditions are special; once prepared, their typical microscopic representatives evolve toward macrostates with larger volume. Time-reversed trajectories exist, but selecting them would require extraordinarily precise correlations.
This final viewpoint ties the section together. Ensembles describe what is typical under constraints, kinetic equations describe how selected coarse variables relax, and field-theory methods repackage the same thermal trace for systems with infinitely many modes.
Open systems sharpen the distinction further. Coupling to reservoirs can make the subsystem dynamics dissipative even when the combined system plus reservoirs evolves reversibly. Master equations, Langevin equations, and linear response theory are all reduced descriptions of this kind. Their success depends on identifying the right slow variables and the right reservoir assumptions.
The finite-temperature QFT bridge is included as a short orientation point: for detailed calculations one must add regularization, interactions, analytic continuation, and real-time response formalisms. The statistical core, however, is already present in .
Visual
| Entropy concept | Formula | Time behavior |
|---|---|---|
| Gibbs fine-grained | constant under Liouville flow | |
| Coarse-grained Gibbs | cells replace exact density | can increase after smoothing |
| Boltzmann | increases for typical macrostates | |
| Relative entropy | decreases in detailed-balance Markov relaxation |
Worked example 1: Two-state master equation relaxation
Problem: A system jumps between states and with rates and . Find the equilibrium probability of state and the relaxation rate.
Method:
- The master equation for is
- Since ,
- At equilibrium, set the derivative to zero:
- Therefore
- Solve the linear equation:
Checked answer: the relaxation time is , and detailed balance is .
Worked example 2: Matsubara frequencies from boundary conditions
Problem: Derive bosonic and fermionic Matsubara frequencies from imaginary-time boundary conditions over interval .
Method:
- A Fourier mode has form
- Bosonic periodicity requires
- Cancel the common factor:
Thus
- Fermionic antiperiodicity requires
- Therefore
Checked answer: integer multiples appear for bosons, half-odd-integer multiples for fermions.
Code
import numpy as np
def two_state_prob(t, a, b, p1_initial):
p_eq = a / (a + b)
return p_eq + (p1_initial - p_eq) * np.exp(-(a + b) * t)
def matsubara(beta, hbar=1.0, nmax=3):
n = np.arange(-nmax, nmax + 1)
boson = 2 * np.pi * n / (hbar * beta)
fermion = (2 * n + 1) * np.pi / (hbar * beta)
return boson, fermion
times = np.linspace(0, 5, 6)
print([two_state_prob(t, a=2.0, b=1.0, p1_initial=0.0) for t in times])
print(matsubara(beta=2.0))
Common pitfalls
- Claiming microscopic reversibility is false because macroscopic entropy increases. The point is the change of description and assumptions.
- Confusing fine-grained Gibbs entropy with coarse-grained or Boltzmann entropy.
- Forgetting that recurrence times can be finite in principle but physically irrelevant for macroscopic systems.
- Using a master equation without checking probability conservation and nonnegative transition rates.
- Treating the finite-temperature QFT bridge as a different ensemble; it is the same thermal trace written in imaginary-time language.