Quantum Models of Motion
Simple quantum models are not just textbook exercises. The particle in a box, harmonic oscillator, rigid rotor, and tunneling barrier are the reusable building blocks for electronic spectra, molecular vibrations, rotational spectroscopy, reaction rates, and nanoscience.
Atkins uses these models to show how boundary conditions and potentials shape energy levels. Each model has a characteristic spacing pattern, and those spacing patterns explain observed spectra and thermal behavior.

Figure: Quantized probability densities as concrete outcomes of simple quantum models. Image: Wikimedia Commons, PoorLeno, public domain.
Definitions
For a particle in a one-dimensional box of length with infinite walls, the allowed wavefunctions are
with energies
For a harmonic oscillator,
and
where
For a rigid rotor in three dimensions,
or in spectroscopic units,
with degeneracy .
For a particle on a ring,
Tunneling is the penetration of a wavefunction into or through a region where classical kinetic energy would be negative.
Key results
The particle-in-a-box model gives quantization from spatial confinement. The energy spacing increases with :
The harmonic oscillator has evenly spaced levels:
and nonzero ground-state energy:
The rigid rotor has level spacings that increase with :
The selection rules for ideal spectroscopic transitions are model-dependent. For the harmonic oscillator electric dipole transition,
if the vibration changes the molecular dipole moment. For the rigid rotor in microwave absorption,
and the molecule must have a permanent dipole moment.
Tunneling probability decreases sharply with barrier width and with the square root of mass. A rough barrier penetration factor is
This explains why electron tunneling is common in spectroscopy and electrochemistry, while heavy-atom tunneling is usually much weaker.
The particle in a box is the simplest model of confinement. Its wavefunctions have nodes fixed by boundary conditions at the walls, and its energies scale as . This length dependence is chemically important: extending a conjugated system lowers electronic transition energies, often shifting absorption to longer wavelengths. The model is crude because real molecular potentials are not infinite square wells, but it captures the central relation between delocalization and energy spacing.
The harmonic oscillator is the local model for any smooth potential near a minimum. If a potential energy curve is expanded in a Taylor series about equilibrium,
the second derivative acts as a force constant. This is why so many vibrations are approximately harmonic for low quantum numbers. The model predicts equal spacings and a zero-point energy. Real bonds are anharmonic: level spacings shrink as the bond stretches, and eventually the molecule dissociates.
The rigid rotor model connects directly to molecular geometry. The moment of inertia depends on bond length, so rotational spectra can provide precise structural information. Larger moments of inertia give smaller rotational constants and more closely spaced lines. Polyatomic molecules require principal moments of inertia, leading to linear, spherical top, symmetric top, and asymmetric top classifications.
The particle on a ring is a bridge between rotational motion and delocalized electronic motion. It is useful for cyclic conjugated molecules because periodic boundary conditions require the wavefunction to match after a full circuit. The allowed angular momentum quantum numbers include positive and negative values corresponding to opposite circulation. Magnetic fields can split or shift such states, linking the model to aromaticity and ring currents in more advanced contexts.
Tunneling shows that quantum probability can cross classically forbidden regions. The wavefunction does not abruptly vanish when ; it decays exponentially. A barrier that is thin enough or a particle that is light enough can have measurable transmission. This affects scanning tunneling microscopy, inversion in ammonia, proton transfer, alpha decay, and low-temperature reaction rates. The exponential dependence on mass and barrier width explains why isotope substitution can strongly change tunneling contributions.
Approximation methods become necessary quickly. Perturbation theory handles small changes to a solvable Hamiltonian; variation theory estimates ground-state energies by optimizing trial wavefunctions; time-dependent perturbation theory describes transitions caused by oscillating fields. These methods are introduced after the exact models because real molecules rarely match exactly solvable potentials.
Selection rules arise from both model algebra and physical coupling. The harmonic oscillator has in the ideal electric-dipole approximation, but anharmonicity allows overtones. The rigid rotor has for microwave absorption, but only if the molecule has a permanent dipole. The particle in a box has transition restrictions based on parity-like integrals. In every case, an energy difference is necessary but not sufficient for spectral intensity.
These models also feed statistical thermodynamics. The translational partition function comes from particle-in-a-box levels in the limit of extremely dense spacing. The vibrational partition function comes from harmonic oscillator spacings. Rotational partition functions come from rotor levels and degeneracies. Thus the simple quantum models are not isolated; they are the molecular foundation of heat capacities, entropies, and equilibrium constants.
Visual
Energy patterns
Particle in a box: E_n proportional to n^2
n=4 ----------------
n=3 ---------
n=2 ----
n=1 -
Harmonic oscillator: equal spacing
v=3 -----------
v=2 -------
v=1 ---
v=0 -
Rigid rotor: E_J proportional to J(J+1)
J=3 ----------------
J=2 --------
J=1 ---
J=0 _
| Model | Energy formula | Spacing pattern | Chemical use |
|---|---|---|---|
| Particle in a box | increases with | conjugated molecules, quantum dots | |
| Harmonic oscillator | constant | vibrations, IR spectra, heat capacity | |
| Rigid rotor | increases linearly in transitions | microwave spectra, bond lengths | |
| Tunneling barrier | not discrete by itself | reaction rates, STM, electron transfer |
Worked example 1: Particle-in-a-box transition energy
Problem. Estimate the transition wavelength for an electron in a one-dimensional box of length .
Method. Use
and .
- Substitute:
- Calculate:
- Wavelength:
Checked answer. A nanometer-scale box gives near-infrared energy spacing. Shorter boxes would shift transitions to higher energy.
Worked example 2: Bond force constant from vibrational wavenumber
Problem. A diatomic molecule has reduced mass and vibrational wavenumber . Estimate the force constant.
Method. Convert wavenumber to frequency:
and use
- Convert wavenumber to :
- Frequency:
- Angular frequency:
- Force constant:
Checked answer. A force constant near is reasonable for a strong diatomic bond such as HCl.
Code
import numpy as np
h = 6.62607015e-34
c = 2.99792458e8
me = 9.1093837015e-31
def box_transition_wavelength(L, n1, n2, m=me):
dE = (n2**2 - n1**2) * h**2 / (8 * m * L**2)
return h * c / dE
def force_constant(wavenumber_cm, reduced_mass_kg):
nu = c * (wavenumber_cm * 100.0)
return (2 * np.pi * nu)**2 * reduced_mass_kg
print("box wavelength nm:", box_transition_wavelength(1e-9, 1, 2) * 1e9)
print("force constant N/m:", force_constant(2886.0, 1.63e-27))
Common pitfalls
- Forgetting that the particle in a box has no state.
- Ignoring zero-point energy in the harmonic oscillator.
- Treating the harmonic oscillator as exact for highly excited vibrations; real bonds are anharmonic and can dissociate.
- Applying rotational microwave selection rules to molecules without permanent dipole moments.
- Underestimating mass effects in tunneling; replacing H by D can strongly change rates.
When using a model, identify what physical feature it preserves and what it discards. The particle in a box preserves confinement but discards realistic potential shape. The harmonic oscillator preserves curvature near a minimum but discards dissociation. The rigid rotor preserves rotational quantization but discards bond stretching. A model can be useful even when obviously idealized if the retained feature controls the observation.
Scaling relations are often more valuable than exact numbers. Box energies scale as , vibrational frequencies as , and rotational constants as . These scalings predict isotope effects, size effects, and bond-strength trends quickly. They also provide checks on numerical answers: heavier isotopes lower vibrational frequencies and rotational constants; stronger bonds raise vibrational frequencies.
For tunneling, remember that probability depends exponentially on parameters. A small increase in barrier width or particle mass can reduce tunneling by orders of magnitude. This is why electron transfer can occur through barriers that would be impossible for heavy atoms, and why hydrogen-transfer reactions can show unusually large kinetic isotope effects at low temperature.
It is also worth checking the classical limit. At large quantum numbers, particle-in-a-box and rotor level spacings become small compared with the total energy, and quantum predictions begin to resemble classical continuous motion. At low quantum numbers, zero-point energy, nodes, and selection rules dominate. Many chemical phenomena sit between these limits, which is why simple models remain useful but need corrections.
In spectroscopy problems, connect each model parameter to an observable: to confinement energy, to vibrational frequency, to rotational spacing, and barrier width to tunneling probability. This keeps the model physical.
When numerical answers are unreasonable, inspect powers of ten first. Nanometers, picometers, , and SI base units are frequently mixed in these models.
Also verify whether a frequency is ordinary frequency or angular frequency ; the missing is a common source of force-constant errors.
Write the defining equation before substituting constants.
Then check units.