Being first order in time is the whole difference. It is why Ψ has to be complex, why one initial condition is enough, and why nothing here looks like a classical wave equation.
Everything is now in place. Chapter 1 gave us ; §2.1 gave us packets, dispersion relations and group velocity. This section puts them together and gets the equation the rest of the book solves.
But before any of that, Phillips says something about method that is easy to read past and worth stopping on.
The construction
Two requirements do all the work.
The equation
We need a wave equation whose sinusoidal solutions obey . Since goes with and goes with , we want one time derivative on one side and two space derivatives on the other. The simplest such equation is the Schrödinger equation schrodinger equation iħ ∂Ψ/∂t = [−(ħ²/2m)∇² + V]Ψ. Postulated and then tested, never derived. First order in time and second in space, which forces its solutions to be complex. defined in ch. 2 — open in glossary :
Check it by substitution. With (Eq. 2.15):
The two agree precisely when — which is Eq. (2.13), the dispersion relation dispersion relation The function ω(k). It alone decides whether a packet keeps its shape or spreads, and it is what a wave equation really encodes. defined in ch. 2 — open in glossary we built the equation to have. So the sinusoid describes a free particle with sharply defined momentum and energy .
The punchline: no real function solves it
Phillips draws the consequence out immediately, and problem 3 asks you to verify it. Try it here instead:
Superposition and the general solution
Every term in Eq. (2.14) is linear in , so if and are solutions, so is any combination of them. That is the superposition principle superposition principle The Schrödinger equation is linear in Ψ, so any sum of solutions is a solution. This is what lets a particle be in two places at once. defined in ch. 2 — open in glossary , and it is what allows a particle to be, in the two-slit sense, doing two things at once.
Superposing all wave numbers gives the general solution:
Adding a potential
Free particles are a warm-up. Everything interesting happens when the particle sits in a potential energy field — an electron near a proton, say, with .
In 1926 Schrödinger generalized Eq. (2.14) in the obvious way: add the potential energy inside the bracket.
and in one dimension
Reproduce it in NumPy
Substituting the trial functions numerically. The complex exponential matches to machine precision at exactly one omega; the cosine never matches at any omega.
import numpy as np
hbar = m = 1.0
k = 2.0
x = np.linspace(-np.pi, np.pi, 400)
def sides(psi, dpsi_dt, d2psi_dx2):
lhs = 1j * hbar * dpsi_dt
rhs = -hbar**2 / (2*m) * d2psi_dx2
return np.max(np.abs(lhs - rhs))
print("checking that A exp(i(kx - wt)) solves Eq. (2.14), with hbar = m = 1, k = 2")
print(f" required dispersion: w = hbar k^2 / 2m = {hbar*k**2/(2*m):.1f}")
for w in (2.0, 1.4):
psi = np.exp(1j*k*x)
err = sides(psi, -1j*w*psi, -k**2*psi)
tag = "<- a solution" if err < 1e-12 else "<- not a solution"
print(f" max |LHS - RHS| at w = {w:.1f} : {err:.1e} {tag}")
print("\nand the same test for cos(kx - wt), scanning every w:")
best, best_w = np.inf, None
for w in np.linspace(0, 6, 601):
psi = np.cos(k*x).astype(complex)
err = sides(psi, w*np.sin(k*x), -k**2*np.cos(k*x))
if err < best:
best, best_w = err, w
print(f" best w found : {best_w:.2f}")
print(f" smallest mismatch : {best:.1e} <- no w works; LHS is imaginary, RHS is real") printschecking that A exp(i(kx - wt)) solves Eq. (2.14), with hbar = m = 1, k = 2 required dispersion: w = hbar k^2 / 2m = 2.0 max |LHS - RHS| at w = 2.0 : 0.0e+00 <- a solution max |LHS - RHS| at w = 1.4 : 6.0e-01 <- not a solution and the same test for cos(kx - wt), scanning every w: best w found : 0.00 smallest mismatch : 2.0e+00 <- no w works; LHS is imaginary, RHS is real
If you remember only three things
-
No real function solves it, and that is structural. One time derivative against two space derivatives cannot be balanced by sines and cosines, whatever the dispersion relation.
-
Uncertainty arrives uninvited. Nothing in the construction asks for it, and Δx Δp ≈ h drops out anyway, which is a stronger result than chapter 1’s hand-waving produced.
-
The equation is linear, and that is what makes superposition legal. Every later technique — expansion in modes, spectra, propagators — rests on that one property and on nothing else.
Where this leaves us
We have an equation. What we do not have is any idea what means.
Phillips is explicit about the gap: the sinusoidal solution “represents a free particle”, the packet “represents a quantum particle which moves with velocity ” — but represents is doing a lot of unexamined work, and the wave function wave function The complex-valued function Ψ(x,t) holding everything knowable about a particle. It is not itself observable; |Ψ|² is. Discretized on a grid, it is a complex vector. defined in the toolkit — open in glossary is a complex number at every point in space. It is not a displacement, not a pressure, not a field strength. Nothing is waving.
There is also the unresolved business from §2.2’s own text: a measurement transforms the packet — measure position precisely and it must instantly become a short packet made of many wavelengths. Phillips’ comment on how that happens is one line long and entirely honest:
No one knows how this happens.
The next chapter supplies the missing interpretation. It is due to Max Born, it is one line long, and it is the bridge between this equation and anything you can measure: is a probability density probability density |Ψ|², carrying units of 1/length in one dimension. Not a probability: only its integral over an interval is. The same object as a probability density function in statistics. defined in the toolkit — open in glossary .
Check yourself
0 / 6 answered
Try every real option in the trial-solution widget.
1.Why can no real function solve the free-particle Schrödinger equation?
2.The construction gets from the packet in step 4. Why does that matter?
3.The Schrödinger equation is first order in time; the classical wave equation is second order. What follows?
4.Reading Eq. (2.16) as a signal-processing operation, what is the transfer function?
5.Substituting a plane wave into Eq. (2.18) with constant gives . What is that?
6.Phillips says the equation "cannot be derived from underlying basic physical principles". What is the status of the argument on this page, then?