Magnetism, Lattice Gases, and Binary Alloys
Magnetic systems turn statistical mechanics into a theory of collective order. Independent spins give paramagnetism, but exchange interactions can align spins and produce ferromagnetism. The same Ising variables also describe lattice gases and binary alloys, making magnetism a prototype for phase transitions beyond literal magnets.
Schwabl's magnetism chapter moves from single moments in a field to interacting spin models, molecular-field approximations, correlation functions, domains, and related systems. The unifying idea is an order parameter: magnetization for spins, density difference for a lattice gas, or concentration difference for a binary alloy.
Definitions
For independent spin- moments in magnetic field , the Hamiltonian is
The single-spin partition function is
The magnetization is
The magnetic susceptibility at small field is
the Curie law.
The Ising Hamiltonian is
Here is ferromagnetic, is an external field, and denotes nearest-neighbor pairs.
Key results
Mean-field theory replaces neighboring spins by their average :
where is the coordination number. Self-consistency gives
At , a nonzero solution appears below
The Ising-lattice-gas mapping uses occupation variables and spins
A lattice gas with attraction between neighboring occupied sites maps to an Ising model; gas-liquid coexistence maps to spontaneous magnetization. In a binary alloy, can label atom and atom . Depending on interaction signs, the alloy may order or phase-separate.
Correlation functions measure spatial order:
Away from criticality, many systems have asymptotic behavior
where is the correlation length. Near a continuous phase transition, becomes large and the system loses memory of microscopic lattice details.
The exchange interaction is quantum mechanical in origin even when the Ising model is written with classical variables. It reflects the combination of Coulomb interactions and the symmetry constraints on many-electron wavefunctions. Effective spin Hamiltonians keep only the low-energy magnetic degrees of freedom. This is why the same statistical model can describe very different microscopic materials once the effective coupling constants are known.
Mean-field theory predicts ferromagnetic order whenever , but dimensionality and symmetry matter. A one-dimensional nearest-neighbor Ising chain has no finite-temperature transition, while the two-dimensional Ising model does. Continuous-symmetry magnets in low dimensions require still more care because long-wavelength spin waves can destroy long-range order. These facts motivate the scaling and renormalization-group treatment rather than invalidating the simpler molecular-field picture.
The lattice-gas mapping is especially important for liquid-gas transitions. With , the Ising magnetization maps to density relative to half filling. The magnetic field maps to a chemical potential, and the exchange coupling maps to attraction between occupied neighboring sites. The liquid and gas phases are then the two magnetized phases of an Ising-like model. This explains why fluids and magnets share critical exponents in the same universality class when their order parameters have the same symmetry and dimensionality.
Binary alloys add another interpretation. If neighboring unlike atoms are energetically favored, the alloy tends toward ordered alternating structures. If like neighbors are favored, it tends toward phase separation. In both cases, entropy favors mixing at high temperature. The transition temperature marks the point where energetic ordering overcomes configurational entropy.
Domains in real ferromagnets reflect a competition absent from the simplest nearest-neighbor Ising model. Exchange favors uniform magnetization, while dipolar magnetic fields can lower energy by splitting the sample into domains. Domain walls cost exchange and anisotropy energy, so the observed pattern minimizes a balance between wall energy and magnetostatic energy.
Paramagnetism and ferromagnetism should also be separated experimentally. A paramagnet can have large magnetization in a strong field, but it has no remanent magnetization when the field is removed. A ferromagnet below has locally ordered domains even at zero field. The measured bulk magnetization may still vanish if domains cancel, so microscopic order is better detected through hysteresis, susceptibility, scattering, or domain imaging.
Correlation functions connect magnetic models to experiments. Neutron scattering, for example, measures spin correlations in momentum space. The Fourier transform of is the structure factor, and near a critical point its peak sharpens as grows. This is the experimental counterpart of the Ornstein-Zernike form discussed in statistical mechanics.
The lattice-gas and alloy mappings also teach economy. Once an Ising calculation is done, it can be reinterpreted across several physical systems by translating variables. This is not merely mathematical cleverness; it is an early form of universality.
Anisotropy determines which spin model is appropriate. Ising spins have a preferred axis, XY spins rotate in a plane, and Heisenberg spins rotate in three dimensions. The symmetry of the order parameter affects low-temperature excitations and the possibility of long-range order. Thus the Hamiltonian's symmetry is not decorative; it helps define the universality class.
Magnetic susceptibility above often follows a Curie-Weiss form,
in mean-field theory. Deviations near are a sensitive probe of critical fluctuations.
Real magnetic materials also include anisotropy, impurities, itinerant electrons, and magnetoelastic coupling. The simple spin models isolate universal mechanisms, while material-specific modeling decides which effective couplings and symmetries are appropriate. This division between universal model and microscopic parameter estimation is typical of statistical mechanics.
The same separation appears in alloys. A minimal lattice model may predict ordering or demixing, but quantitative phase diagrams require actual pair energies, elastic strain effects, and sometimes longer-range interactions. The statistical framework tells us how these ingredients compete through free energy.
That free-energy competition is the shared language behind magnetic ordering, condensation, and alloy phase diagrams. It is also why simple lattice models remain useful long after their microscopic idealizations are understood.
Visual
| System | Variable | Interaction meaning | Ordered state |
|---|---|---|---|
| Ferromagnet | exchange favors alignment | nonzero magnetization | |
| Lattice gas | attraction favors occupied neighbors | dense-liquid vs dilute-gas | |
| Binary alloy | for | pair energies favor mixing or separation | concentration order |
| Paramagnet | independent | field only | no spontaneous order |
Worked example 1: Curie law for independent spin halves
Problem: Derive the small-field susceptibility for independent spins with moment .
Method:
- The single-spin partition function is
- The total partition function is
- Magnetization is
- Differentiate:
- For small , , so
Checked answer:
Worked example 2: Mean-field critical temperature of the Ising model
Problem: Use the self-consistency equation
at to find the critical temperature.
Method:
- Near the transition, is small.
- Expand the hyperbolic tangent:
- Insert :
- A nonzero small solution becomes possible when the coefficient of the linear term equals :
- Therefore
Checked answer: this mean-field depends only on coordination number and exchange strength; fluctuation corrections reduce or eliminate ordering in low dimensions.
Code
import numpy as np
def mean_field_m(T, J=1.0, z=4, h=0.0, steps=500):
beta = 1.0 / T
m = 0.5
for _ in range(steps):
m = np.tanh(beta * (h + z * J * m))
return m
for T in [1.0, 2.5, 4.0, 5.0]:
print(T, mean_field_m(T, J=1.0, z=4))
Common pitfalls
- Confusing paramagnetic alignment in a field with spontaneous ferromagnetic order at zero field.
- Treating mean-field theory as exact in one or two dimensions. Fluctuations can change or destroy its predictions.
- Forgetting the factor of coordination number in molecular-field equations.
- Mapping a lattice gas to Ising spins but losing the chemical-potential term, which maps to magnetic field.
- Interpreting nonzero finite-size magnetization without considering symmetry breaking and the thermodynamic limit.