Central Potentials and the Hydrogen Atom
The hydrogen atom is the central bound-state problem of nonrelativistic quantum mechanics. It combines rotational symmetry, separation of variables, angular momentum, radial boundary conditions, degeneracy, and perturbative corrections. It also explains why spectroscopy became one of the first precision tests of quantum theory.
Sakurai treats hydrogen and hydrogenlike atoms after angular momentum and again in approximation methods through fine structure and Zeeman effects. Ballentine's bound-state chapter emphasizes estimates, variational reasoning, and perturbative corrections. The Gottfried-named notes use hydrogen as a perturbation-theory example. Schiff's traditional wave-mechanics approach is the classic separation into radial and angular equations.
Definitions
A central potential depends only on radius:
Then
so stationary states can be labeled by angular momentum quantum numbers.
For hydrogen,
The Hamiltonian for the relative coordinate is
where is the electron-proton reduced mass.
Separation of variables gives
The Bohr radius is
The principal quantum number is
with
Key results
The bound-state energies are
for hydrogen to the usual reduced-mass approximation.
The energy depends only on in the nonrelativistic Coulomb problem. For a fixed , the degeneracy counting without spin is
Including electron spin doubles it to before fine structure, hyperfine structure, or external fields are included.
The normalized ground-state wave function is
The radial probability density for the ground state is
It is largest at , even though the wave function itself is largest at . This distinction between amplitude density and radial shell probability is a common conceptual test.
Fine structure corrections include relativistic kinetic energy, spin-orbit coupling, and the Darwin term. Zeeman splitting in a weak magnetic field is governed by magnetic moments and angular momentum projections. Sakurai's treatment uses angular-momentum machinery; Schiff's older notation often presents these corrections in a more wave-equation-centered form.
Visual
| Quantum number | Allowed values | Physical meaning |
|---|---|---|
| energy shell in Coulomb problem | ||
| orbital angular momentum magnitude | ||
| projection of orbital angular momentum | ||
| for electron | intrinsic spin | |
| total electronic angular momentum |
Worked example 1: Most probable radius in the ground state
Problem. Show that the most probable radius in the hydrogen ground state is .
Method.
- Start from
- The probability of finding the electron between and is
- Substitute:
- Differentiate:
- Factor:
- Critical points are and . Since and rises then falls, the maximum is
Checked answer. The amplitude is largest at the origin, but the radial probability includes the shell factor .
Worked example 2: Energy of a Lyman-alpha photon
Problem. Find the photon energy for the transition in hydrogen using the nonrelativistic formula.
Method.
- Use
- Compute the initial energy:
- Compute the final energy:
- The emitted photon energy is the lost atomic energy:
- A wavelength estimate is
Checked answer. This is ultraviolet light, consistent with the Lyman series.
Code
import numpy as np
a0 = 1.0
r = np.linspace(0, 8 * a0, 1000)
radial_prob = 4 * r**2 / a0**3 * np.exp(-2 * r / a0)
r_peak = r[np.argmax(radial_prob)]
for n in [1, 2, 3, 4]:
print(n, -13.6 / n**2)
print("peak radius in units of a0:", r_peak)
Common pitfalls
- Confusing , , and radial probability density. The shell factor matters.
- Forgetting reduced mass. Precision spectroscopy needs , not exactly the electron mass.
- Assuming the Coulomb degeneracy is generic. Most central potentials have energies depending on both and .
- Treating degeneracy as permanent. External fields split projection degeneracies.
- Mixing orbital and total angular momentum labels when spin-orbit coupling is present.
- Calling the average radius. In the ground state, the most probable radius is , while the expectation value is .
- Applying nonrelativistic hydrogen energies to fine spectral details without corrections.
Central-potential problems are a lesson in using symmetry before solving equations. Rotational invariance tells you that and commute with the Hamiltonian, so the angular dependence must be organized by spherical harmonics. The remaining problem is radial. This separation is not a computational trick; it is the mathematical expression of the fact that no direction in space is preferred by . Sakurai's route through angular momentum makes this structure explicit before the hydrogen formulas appear.
The Coulomb potential has an additional hidden symmetry, which is why the nonrelativistic energy depends only on rather than on . That degeneracy is special. A generic central potential has energies depending on the radial quantum number and . When fine structure, Lamb shift, hyperfine coupling, or external fields are included, the simple degeneracy is partially or fully lifted. Treat the formula as the leading idealization, not the full story of real hydrogen spectroscopy.
Radial probability is another conceptual trap. The probability density in three dimensions is , but the probability for a radius interval includes the volume element for spherically symmetric states. This is why the ground-state wave function is largest at the origin while the most probable radius is . Whenever a problem asks "where is the electron most likely to be found," check whether it means a point density or a radial shell probability.
Hydrogen also functions as a meeting point for later approximation methods. The Stark effect uses degenerate perturbation theory in excited shells. The Zeeman effect uses angular momentum and magnetic moments. Variational estimates reproduce the ground energy when the trial family contains the exact exponential form. Scattering from Coulomb-like potentials requires special care because the potential is long-ranged. One atom therefore exercises nearly the whole nonrelativistic toolkit.
When doing hydrogen calculations, keep the hierarchy of approximations explicit. The simplest Hamiltonian uses a Coulomb potential and reduced mass. Fine structure adds relativistic kinetic correction, spin-orbit coupling, and Darwin terms. Hyperfine structure adds nuclear spin. The Lamb shift requires quantum-field effects beyond ordinary nonrelativistic quantum mechanics. External electric and magnetic fields add Stark and Zeeman perturbations. Mixing formulas from different levels of this hierarchy without stating the approximation leads to inconsistent spectroscopic predictions.
The radial equation is also a good place to practice dimensional reasoning. Lengths should naturally appear in units of , energies in Rydberg-scale units, and angular parts should be dimensionless spherical harmonics. If a radial wave function normalization produces a dimensionless , something is wrong: because , has dimensions of length to the power .
For problem solving, start by identifying which labels remain good quantum numbers after each added interaction. Pure Coulomb hydrogen uses and spin separately. Spin-orbit coupling favors . A magnetic field may make a projection quantum number central. Choosing labels before calculating keeps degeneracy splitting organized.