The Radial Equation & the Hydrogen Atom
The Radial Equation & the Hydrogen Atom
The angular problem is solved once and forever; what remains is one radial equation per potential. A single substitution, , turns it into a one-dimensional Schrödinger equation — every tool from Course P.5 applies — and for the Coulomb potential the series solution terminates only at special energies: , Bohr's lucky guess, now derived. This is the calculation that convinced physics that wave mechanics was true. Approach it the way a cat approaches a full food bowl: unhurried, but missing nothing.
Learning Objectives
After this lesson you will be able to:
- Reduce a central-potential problem to a 1D equation for with the effective potential and its centrifugal barrier.
- Apply the correct boundary conditions on and solve the infinite spherical well for .
- Carry out the full hydrogen solution: asymptotics, series, the recursion relation, and termination.
- Derive the Bohr energies , the Bohr radius , and the degeneracy.
- Work with the radial functions and the radial probability density , computing most probable and mean radii.
- Interpret the quantum numbers , use spectroscopic notation, and contrast the Bohr and Schrödinger pictures of the atom.
Intuition
Classically, conservation of angular momentum flattens any central-force problem into one-dimensional radial motion in an effective potential — the orbiting piece of the kinetic energy masquerades as a repulsive barrier (P.1.2 Lagrangian Mechanics). Quantum mechanics repeats the maneuver verbatim, with : the electron with angular momentum is pushed away from the origin by the same centrifugal effect that keeps a whirling ball on a string taut.
So the hydrogen atom is, at heart, a Course P.5 problem: a particle in a 1D well (Coulomb attraction plus centrifugal repulsion), with bound states at discrete energies. The magic is in the numbers that come out — energies matching every observed spectral line, and a natural length scale, the Bohr radius, assembled from , , and with no free parameters.
Theory
From 3D to effective 1D: the radial equation
Separation in P.6.1 left the radial equation
Substitute . Then , , so and . The equation becomes , i.e.
This is exactly a 1D Schrödinger equation, with replaced by the effective potential: the true potential plus the centrifugal barrier — the same term as in the classical central-force problem (P.1.2), quantized. Normalization also cooperates: .
Boundary conditions: the 1D toolkit applies
Two conditions replace the free constants of the 1D problems:
- At the origin: . If then , and produces a delta function no finite can cancel — not a solution. (For the centrifugal barrier enforces even faster vanishing, as we'll see.)
- At infinity: for a bound state (), just as in P.5.2 Step, Well & Barrier.
With vanishing at both ends, all the machinery of Course P.5 — node counting, matching, shooting-method numerics — transfers wholesale to three dimensions.
Warm-up: the infinite spherical well
Let for and outside. For the radial equation is just with — the 1D box. The condition selects , and quantizes :
with , perfectly finite at the origin. For the solutions regular at are the spherical Bessel functions, , and the energies come from their zeros — Exercise E5 works out .
The hydrogen atom I: setting up
Now the main event. The proton's Coulomb potential is
so the radial equation reads
Bound states have . Define
( is real; is dimensionless radius; packages the strength of the Coulomb attraction relative to the energy). Dividing the equation by and tidying up:
The hydrogen atom II: asymptotics and the series
Large : the bracket , so and ; normalizability kills . Small : the centrifugal term dominates, , with solutions and ; the second violates (and normalizability), so . Peel off both behaviors:
Substituting (two applications of the product rule) turns the equation for into
Try a power series . Then , , and (each after shifting the summation index). Collecting the coefficient of :
which solves to the recursion relation
One constant (fixed later by normalization) generates the whole series.
The hydrogen atom III: quantization
Suppose the series never terminates. For large the recursion is , whose solution is — the series of . Then : the asymptotic disease we amputated grows back. The only escape is termination: some maximal index must give , i.e.
Define the principal quantum number , so . Unpacking 's definition, , and gives
— the Bohr formula, exactly, but derived from a real dynamical theory rather than postulated. The natural length scale also assembles itself: with
the Bohr radius. Two structural facts come free. Since ,
and counting all states at energy ( values of for each allowed ):
The -degeneracy is guaranteed by spherical symmetry; the extra -degeneracy (2s degenerate with 2p) is an "accident" special to the pure potential.
The wavefunctions
The terminating polynomials are (up to normalization) the associated Laguerre polynomials , with , so with . The first few, normalized:
The physically meaningful radial quantity is the radial probability density
the probability per unit radius of finding the electron in the spherical shell (the is the shell's growing area). For the ground state, ; setting gives , so the most probable radius is exactly — Bohr's orbit radius reborn as the peak of a distribution. The mean radius is larger, because the distribution has a long tail:
Caution. The electron is not "at the Bohr radius," and it is not on a trajectory at all — is the probability of finding it in a shell upon measurement, per the Born rule (P.4.1). And do not confuse with : the ground-state density peaks at , while peaks at . Both statements are true; they answer different questions.
Quantum numbers, notation, and Bohr vs Schrödinger
| Symbol | Name | Allowed values | Determines |
|---|---|---|---|
| principal | energy | ||
| orbital (azimuthal) | shape; | ||
| magnetic | orientation; |
Spectroscopic notation labels as prefixed by : the ground state is 1s; the level holds 2s and 2p; and so on.
| Bohr model (P.2.2) | Schrödinger theory | |
|---|---|---|
| Energies | (right, luckily) | same — now derived |
| Angular momentum | ; ground state | ; ground state , ! |
| Picture | planetary orbits of definite radius | stationary probability clouds ("orbitals, not orbits") |
| States per level | one orbit | degenerate states |
The Rydberg formula, fitted to data in P.2.2, is now a theorem: a photon emitted in the transition carries , so
Not every pair of levels actually radiates, though: coupling to the electromagnetic field enforces the selection rule (2p → 1s shines; 2s → 1s is forbidden and that state is metastable). Deriving this requires time-dependent perturbation theory, beyond our scope here.
Worked Examples
Example 1 — Lyman-α from first principles
The transition emits . The wavelength: — deep ultraviolet, matching the measured Lyman-α line () to our precision. The same arithmetic on , , ... reproduces the visible Balmer series a century of spectroscopists catalogued.
Example 2 — Where is the ground-state electron?
What is the probability of finding it beyond the Bohr radius? With :
Two-thirds of measurements find the electron outside the "orbit" it supposedly occupies. The Bohr radius marks the peak of , not a boundary — the atom has no edge, only an exponential fade.
Hands-on (Python)
Shooting method on , in Bohr-radius units where the equation becomes with :
import numpy as np
def shoot(eps, l, x_max=40.0, n=8000):
"""Integrate u'' = k(x) u outward; return u(x_max). Eigenvalue <=> u(x_max) ~ 0."""
x = np.linspace(1e-4, x_max, n); h = x[1] - x[0]
k = l*(l + 1)/x**2 - 2.0/x - eps
u = np.zeros(n); u[0], u[1] = x[0]**(l + 1), x[1]**(l + 1) # u ~ x^{l+1} near 0
for i in range(1, n - 1):
u[i+1] = 2*u[i] - u[i-1] + h*h*k[i]*u[i]
return u[-1]
def eigenvalue(l, lo, hi):
for _ in range(60): # bisect on the sign of u(x_max)
mid = 0.5*(lo + hi)
if shoot(lo, l)*shoot(mid, l) < 0: hi = mid
else: lo = mid
return 0.5*(lo + hi)
for l, brackets in [(0, [(-1.5, -0.6), (-0.35, -0.15), (-0.14, -0.09)]),
(1, [(-0.35, -0.15), (-0.14, -0.09)])]:
print(l, [round(eigenvalue(l, *b)*13.6057, 2) for b in brackets])
# Expect: l=0 -> [-13.61, -3.40, -1.51]; l=1 -> [-3.40, -1.51]
# E depends only on n -- the accidental Coulomb degeneracy, found numerically.Radial probability densities in units of :
import matplotlib.pyplot as plt
r = np.linspace(0, 25, 1000) # r in units of a0
R = {(1,0): 2*np.exp(-r),
(2,0): (1 - r/2)*np.exp(-r/2)/np.sqrt(2),
(2,1): r*np.exp(-r/2)/np.sqrt(24),
(3,0): (2/np.sqrt(27))*(1 - 2*r/3 + 2*r**2/27)*np.exp(-r/3)}
for (n, l), Rnl in R.items():
plt.plot(r, r**2*Rnl**2, label=f"$P_{{{n}{l}}}$")
plt.xlabel("$r/a_0$"); plt.ylabel("$P(r)\\,a_0$"); plt.legend(); plt.show()
# Expect: P_10 peaks at r = a0; P_20 has a node (2 bumps); P_21 one bump peaking
# at 4 a0; P_30 has two nodes. Check each curve integrates to 1 with np.trapezoid.Monte Carlo orbital clouds — rejection-sample and scatter the points:
rng = np.random.default_rng(7)
def psi2_210(x, y, z): # |psi_210|^2 ∝ e^{-r} z^2 (a0 = 1)
return np.exp(-np.sqrt(x*x + y*y + z*z))*z**2
def psi2_320(x, y, z): # |psi_320|^2 ∝ r^4 e^{-2r/3}(3cos^2θ - 1)^2
r = np.sqrt(x*x + y*y + z*z)
return r**4*np.exp(-2*r/3)*(3*(z/np.maximum(r, 1e-12))**2 - 1)**2
def sample(pdf, half_box, f_max, n_keep=4000):
kept = np.empty((0, 3))
while len(kept) < n_keep: # rejection sampling in a cube
p = rng.uniform(-half_box, half_box, (100_000, 3))
acc = p[rng.uniform(0, f_max, 100_000) < pdf(*p.T)]
kept = np.vstack([kept, acc])
return kept[:n_keep]
fig = plt.figure(figsize=(11, 5))
for i, (pdf, box, fmax, name) in enumerate(
[(psi2_210, 15, 0.6, "2p$_z$"), (psi2_320, 30, 95.0, "3d$_{z^2}$")]):
pts = sample(pdf, box, fmax)
ax = fig.add_subplot(1, 2, i + 1, projection='3d')
ax.scatter(*pts.T, s=1, alpha=0.3); ax.set_title(name)
plt.show()
# Expect: the 2p_z dumbbell along z; the 3d_z2 dumbbell wearing a donut at the
# waist -- the textbook orbital pictures, generated from |psi|^2 itself.Exercises
E1 (easy). Compute the wavelength of the Balmer H-α line (). Which part of the spectrum is it in?
Solution
; — red, visible; the famous H-α line of astronomy.
E2 (easy). Verify by explicit integration that is normalized: .
Solution
$\int_0^\infty \frac{4}{a_0^3}e^{-2r/a_0}r^2dr = \frac{4}{a_0^3}\cdot\frac{2!}{(2/a_0)^3} = \frac{4}{a_0^3}\cdot\frac{2a_0^3}{8} = 1\int_0^\infty r^ne^{-br}dr = n!/b^{n+1}$).
E3 (medium). Find the most probable radius of the 2p state () and compare with the Bohr model's prediction for .
Solution
. Then gives — exactly Bohr's for . The circular Bohr orbit survives as the peak of the maximal- radial distribution; small- states (like 2s) have no classical counterpart at all.
E4 (medium). For the ground state compute , then and . Verify the virial pattern , .
Solution
. So , and ✓ — the quantum virial theorem for a potential, .
E5 (hard). Solve the infinite spherical well for : show that satisfies the radial equation and the origin condition, derive the quantization condition, and compare the lowest energy to the ground state.
Solution
With (this is ), differentiating twice gives , while ; the sum vanishes term by term, so — the radial equation with . As , and , so ✓ (indeed ). The wall imposes : , whose smallest positive root is . Hence , about the ground energy — the centrifugal barrier raises every level, and unlike hydrogen there is no accidental degeneracy.
Checkpoint
- What is , and where does its extra term come from — classically and quantum mechanically?
- Why must ?
- Trace the logic: how does demanding a normalizable solution produce ?
- Why is the degeneracy of level equal to , and which part of it is "accidental"?
- The ground-state peaks at but peaks at . Reconcile.
Answers
- . The barrier is the angular kinetic energy: classically from conservation of ; quantum mechanically the term acting on .
- Otherwise and contains , which nothing in the equation can balance; the wavefunction would not solve the Schrödinger equation at the origin.
- Asymptotics force ; the series for obeys ; a non-terminating series grows like and ruins normalizability; termination forces , which converts to .
- . The -degeneracy follows from rotational symmetry; the degeneracy across different is accidental, special to the potential.
- They answer different questions: is probability per unit volume (largest at the origin), is probability per unit radius, and the growing shell area moves its peak out to .
Further Reading
- [Gri] Griffiths & Schroeter, §4.2 — the hydrogen atom; this lesson follows its route and notation (, , ).
- [ER] Eisberg & Resnick, Ch. 7 — one-electron atoms with full experimental context and the classic orbital plots.
- [Gold] Goldstein, Poole & Safko, Ch. 3 — the classical central-force problem; compare the effective potentials side by side.
- [Sha] Shankar, Ch. 13 — the hydrogen atom, with a sharper look at the accidental degeneracy and its hidden symmetry.
← Prev: Central Potentials & Orbital Angular Momentum · Up: Pre-Term · Next: Magnetic Moments, Stern–Gerlach & Spin →