The Schrödinger equation — where energy quantization begins
The Schrödinger equation — where energy quantization begins
How a single line, , forces the conclusion that energy comes in discrete steps — worked out by hand on the particle in a box.
Opening
Chapter 1 showed that classical mechanics has nothing to say about the electron inside an atom. This chapter introduces the one line that breaks that silence — the time-independent Schrödinger equation — explains why it takes the shape of an eigenvalue equation, and shows how energy quantization falls out of that shape automatically, with no extra postulate. The finale solves the simplest model, the particle in a box, by hand, and checks that the numbers come out on the energy scale of real chemistry. The 1s, 2s, 2p structure of multi-electron atoms in the next chapter starts from this picture.
Main 1 — The single line
The time-independent Schrödinger equation is this one line:
Here (psi, the wavefunction) is a complex-valued function of position , and (the Hamiltonian) is the sum of a kinetic term — the Laplacian — and a potential . The constant (h-bar, the reduced Planck constant) is about .
The crucial feature of this equation is its shape: “apply to and get back a multiple of the same .” That is an eigenvalue equation. Just as the matrix equation in linear algebra singles out a few special vectors (eigenvectors) and the numbers attached to them (eigenvalues), the operator singles out, from the infinity of possible functions, a few special ones — the eigenfunctions . The number that pairs with each of them is the energy of that state.
The point is this: not every is a solution. Only the special that also satisfy the boundary and normalization conditions survive, and that is why the set of allowed energies is not a continuum but a discrete set. Quantization is not an extra postulate; it is a structural consequence of the equation.
Main 2 — Particle in a box (1D)
Let us solve the simplest example by hand. A particle is confined to the 1D interval . Inside, ; outside, (the particle cannot leave the box). Inside the box the Schrödinger equation reduces to
Outside the box , and for to be continuous we must have the boundary conditions .
The general solution inside is with . The condition forces . The remaining condition leaves two possibilities: (the trivial empty-box solution) or for some integer . The second is what we want. Adding the normalization gives
Three observations follow from this one line. (a) The energy is discrete — only are allowed. (b) Because , the gaps grow as you go up the ladder. (c) — the mere fact of being confined produces a non-zero minimum kinetic energy. This is the zero-point energy. A classical particle can sit still with ; a quantum particle cannot.
Main 3 — Why this matters for chemistry
The particle in a box is a toy model, but it sets the scale of chemistry in one stroke. Confine an electron to a box the size of an atom — (the Bohr radius) — and plug in the electron mass : the ground-state energy comes out to about . The order of magnitude is exactly the electronvolt regime, the same scale as chemical bond energies and visible-light photon energies. The “electron in a Coulomb well” picture from Chapter 1 was, in effect, a “particle in a Coulomb-shaped box,” and the same logic will produce the hydrogen 1s, 2s, 2p structure in the next chapter.
A second preview. Each spatial eigenstate can hold two electrons — one spin-up, one spin-down. That is the Pauli exclusion principle: no two electrons share a complete set of quantum numbers. It is the reason the periodic table fills 2-8-8-18, the reason helium is a stable noble gas, the reason carbon makes four bonds. The proper formalism — the Slater determinant — waits for Chapter 4.
In Python
# The first three eigenfunctions of the particle in a box, on the energy ladder.
# Units: hbar = 1, m = 1, L = 1. Then E_n = n^2 * pi^2 / 2.
import numpy as np
import matplotlib.pyplot as plt
L = 1.0
N = 200
x = np.linspace(0.0, L, N)
# Check the energy ratio: E_n / E_1 = n^2
ratios = [(n, n**2) for n in range(1, 5)]
print("E_n / E_1 =", [r for _, r in ratios]) # [1, 4, 9, 16]
# Energies and wavefunctions
energies = [n**2 * np.pi**2 / 2 for n in (1, 2, 3)]
psis = [np.sqrt(2/L) * np.sin(n * np.pi * x / L) for n in (1, 2, 3)]
# Stack each psi vertically at its own energy level
fig, ax = plt.subplots(figsize=(6, 5))
scale = 1.2 # amplitude scaling for visibility
for n, (E, psi) in enumerate(zip(energies, psis), start=1):
ax.axhline(E, color="0.7", lw=0.8)
ax.plot(x, scale * psi + E, label=f"n={n}, E={E:.2f}")
ax.set_xlabel("x / L")
ax.set_ylabel("E (arb. units)")
ax.set_title("Particle in a box: psi_n stacked on the energy ladder")
ax.legend()
plt.tight_layout()
plt.show()
If the printed list comes out as [1, 4, 9, 16] and the figure shows successively more nodes with successively larger gaps as you climb, you have touched the two core ideas of this chapter — quantization and the scaling — with your own hands.
To the next chapter
Chapter 3: Multi-electron atoms and atomic orbitals solves the same Schrödinger equation, this time with the three-dimensional Coulomb potential , and reads off the 1s, 2s, 2p, 3d, … orbital structure that follows. If the box in this chapter was the cleanest example of “confinement forces quantization,” the next chapter is about how that picture deforms when the walls are replaced by a real Coulomb attraction.