Quantum Statistics and Ideal Quantum Gases
Quantum statistics changes the meaning of "counting states." Identical particles cannot be labeled as classical objects, and the many-body wavefunction must be symmetric for bosons or antisymmetric for fermions. This single structural fact produces Bose-Einstein condensation, blackbody radiation, the stability of metals, electron degeneracy pressure, and many other effects absent from classical gases.
Schwabl develops ideal quantum gases most cleanly in the grand canonical ensemble. The noninteracting Hamiltonian factorizes into single-particle occupations, but the allowed occupation numbers depend on statistics: for fermions and for bosons.
Definitions
For single-particle energies ,
The grand partition function factorizes:
For fermions,
For bosons,
valid when for every level. The mean occupations are
The classical Maxwell-Boltzmann limit occurs when , giving
Key results
The grand potential for ideal quantum gases is
and
The particle number is
For a three-dimensional box with spin degeneracy , sums over states are often replaced by
Using ,
The degeneracy parameter is
Classical statistics is reliable when . Quantum statistics matters when wave packets overlap, i.e. when is not small. For fermions, Pauli exclusion creates a filled Fermi sea at low temperature. For bosons, macroscopic occupation of the ground state can occur when the excited states cannot hold all particles.
The sign difference between fermions and bosons can be traced to the symmetry of the many-particle state. For two particles in one-particle states and ,
while
If , the fermionic state vanishes. This is Pauli exclusion in its simplest form. In occupation-number language it becomes the rule or .
Quantum ideal gases also show why the grand canonical ensemble is more than a convenience. The many-body canonical partition function at fixed must enforce a global sum over occupations, . The grand ensemble removes that constraint with a fugacity and makes different levels independent. The fixed- answer is recovered by choosing so that the mean particle number matches the desired value, with relative number fluctuations vanishing for ordinary macroscopic phases.
The classical limit can be expressed as an expansion in fugacity. For small ,
for fermions, while
for bosons. The first term is Maxwell-Boltzmann statistics. The second term is the leading quantum correction to virial behavior: fermions act as if they repel statistically, while bosons act as if they attract statistically.
Occupation-number language is also the bridge to second quantization. Creation and annihilation operators add or remove particles from a mode, and the many-body basis is specified by the occupation list . For bosons,
while for fermions anticommutation enforces
The ideal-gas Hamiltonian is diagonal in this basis, making the grand partition product exact.
Interactions break the simple product over modes, but the statistical distinction remains. Perturbation theory, quasiparticles, and finite-temperature field theory all start from these noninteracting occupation factors and then add corrections. This is why mastering ideal quantum gases is not optional; it is the reference theory for much of condensed matter and many-body physics.
Exchange symmetry also creates correlations without forces. Even an ideal Fermi gas has reduced probability for two identical fermions with the same spin to be close in phase space, while an ideal Bose gas has enhanced occupation fluctuations. These are statistical correlations, not potential-energy effects. They appear in virial corrections, density correlations, and quantum optics. The word "ideal" therefore means noninteracting, not classically uncorrelated.
In the thermodynamic limit, sums over levels become integrals only when level spacing is small compared with thermal scales. Ground states, gaps, and low-dimensional densities of states must be handled separately.
Spin degeneracy is another common source of factors. A spin- gas with no magnetic splitting has two states for each momentum, while polarized gases or particles with internal hyperfine structure require different degeneracy counts. These factors multiply density of states and therefore shift , , and even when the occupation formula itself is unchanged.
For finite systems, discrete levels can dominate. A cold trapped gas, a quantum dot, or a small cavity may not be well approximated by a continuum density of states. In those cases the product over levels should be kept explicitly, and thermodynamic-limit intuition must be applied with care.
Visual
| Statistics | Allowed | Mean occupation | Low-temperature behavior |
|---|---|---|---|
| Maxwell-Boltzmann | effectively any, dilute | classical exponential tail | |
| Fermi-Dirac | or | filled states below | |
| Bose-Einstein | enhanced low-energy occupation |
occupation
^
1| FD: ______
| \
| \
0|------------\----------> epsilon
| BE: rises sharply near mu from above
Worked example 1: Fermion and boson occupation of the same level
Problem: Let be such that . Compute and .
Method:
- Evaluate the exponential:
- Fermion occupation:
- Boson occupation:
- Classical approximation:
Checked answer: for this moderately dilute level, the classical value lies between FD and BE. Fermions are suppressed by exclusion; bosons are enhanced by stimulated occupation.
Worked example 2: Degeneracy parameter for helium gas
Problem: Estimate for helium atoms at and number density . Use .
Method:
- Compute the thermal wavelength:
- Insert values:
- Its square root is approximately , so
- The degeneracy parameter is
Checked answer: the value is not small, so quantum statistics is essential for liquid helium near a few kelvin.
Code
import numpy as np
def fermi(eps, mu, T, kB=1.0):
return 1.0 / (np.exp((eps - mu) / (kB * T)) + 1.0)
def bose(eps, mu, T, kB=1.0):
x = np.exp((eps - mu) / (kB * T))
return 1.0 / (x - 1.0)
eps = np.linspace(0.1, 5.0, 10)
mu = 0.0
T = 0.5
for e in eps:
print(f"{e:.2f}", f"{fermi(e, mu, T):.4f}", f"{bose(e, mu, T):.4f}")
Common pitfalls
- Labeling identical quantum particles as if they were distinguishable classical particles.
- Forgetting that the Bose formula requires below the lowest single-particle energy.
- Assuming the Maxwell-Boltzmann limit is high temperature only. Low density is equally important through .
- Confusing occupation of a single-particle level with the probability that the many-body system has one particle total.
- Replacing sums by integrals without checking whether the ground state must be separated, especially near Bose-Einstein condensation.