The Free Particle & Constant Potentials
The Free Particle & Constant Potentials
Before solving any real potential, learn to read the Schrödinger equation the way a musician reads a score. Wherever is constant the solutions are plane waves or exponentials; everything else is stitching those pieces together at the seams. This lesson builds the stitching kit — continuity, curvature, parity, nodes — and ends with the punchline of the whole course: why bound energies come in discrete steps. A cat at a closed door already suspects the answer.
Learning Objectives
After this lesson you will be able to:
- Solve the time-independent Schrödinger equation in any region of constant potential, for and .
- Explain why is a momentum eigenfunction but not a physical state, and how wave packets resolve this.
- Compute the penetration depth into a classically forbidden region.
- Apply the matching conditions for and , including the jump condition at a -function potential.
- Sketch energy eigenfunctions qualitatively using the curvature relation, parity, and the node theorem.
- Explain the qualitative origin of energy quantization and the idea of the shooting method.
Intuition
Squint at the time-independent Schrödinger equation and it says one thing: the curvature of is proportional to . Where the particle is classically allowed (), curves back toward the axis and oscillates, like a plucked string. Where it is forbidden (), curves away, growing or decaying exponentially — and a physical wavefunction had better pick "decays." A bound state must decay on both sides, and tuning the energy so the decaying tail on the left evolves into a decaying tail on the right is possible only at special, discrete energies. That is quantization, before we solve a single potential exactly.
Theory
The time-independent Schrödinger equation with constant
From P.4.2, stationary states obey the time-independent Schrödinger equation (TISE)
If is constant in a region, this is a constant-coefficient ODE with exactly two regimes:
Everything in this course is these two lines, glued together at seams.
The free particle
Set everywhere. For any the solutions are plane waves with . Acting with from P.4.3 gives : is a momentum eigenfunction with eigenvalue (and with ) — a right- and a left-mover of the same energy , de Broglie's as an eigenvalue statement. But these solutions are not normalizable: , and no constant fixes that. The honest patch is Dirac-delta normalization: with ,
a delta function where an orthonormal basis would have a Kronecker delta. The are not states but a continuum basis. The physical resolution is the one built in P.4.3: a real free particle is a wave packet, , normalizable whenever is, and moving at the group velocity (the phase velocity is half that — the packet, not the ripples, carries the particle).
Caution. is a useful fiction: infinitely delocalized, infinite norm. Every statement of the form "a free particle with momentum " is secretly a statement about a narrow wave packet centered on — narrow enough in that the fiction is harmless, wide enough in to exist.
Allowed vs forbidden regions
For slowly varying the constant- picture holds locally:
- Allowed (): oscillates with local de Broglie wavelength , where .
- Forbidden (): real exponentials ; a physical solution keeps only the decaying piece, dying off over the penetration depth .
Numbers. An electron below a barrier top, using and :
— about two atomic radii. Quantum mechanics leaks into walls, but only by ångströms: why tunneling is huge for electrons and invisible for cats.
The matching toolkit
Real potentials are piecewise; the rules for sewing solutions across a seam come from the TISE:
- is continuous everywhere. A jump in would put a into , which nothing in the TISE could balance.
- is continuous wherever is finite. Integrate the TISE across a seam at :whenever the integrand is bounded.
- Jump condition at a -spike. If , the integral above survives, since :— the derivative kinks in proportion to at the spike. (At a truly infinite wall, may jump and instead at the wall.)
This toolkit is the workhorse of Lesson 2: every step, well, and barrier problem is "general solution per region, then match."
Reading the curvature: sketching rules
Rewrite the TISE as a statement about relative curvature:
In an allowed region : always curves toward the axis — that is what oscillation is — and the more negative , the tighter the curvature (shorter ). In a forbidden region : curvature away, exponential growth or decay. At a turning point (): , an inflection. One more rule finishes the kit: where the particle is fast (large ) it spends little time, so the amplitude is small and the wavelength short; slow regions get tall, lazy waves. With these you can sketch any 1D eigenfunction before computing anything.
Parity
Let and let solve the TISE with energy . Substituting (which leaves invariant) shows is also a solution with the same . Then are solutions with energy , one even, one odd, and at least one is nonzero: eigenfunctions of a symmetric potential can always be chosen even or odd. For 1D bound states they must be: bound levels are non-degenerate (proved in E5), so with , i.e. . Parity halves every symmetric-well problem — the finite well of Lesson 2 leans on it hard.
Nodes, and the origin of quantization
Node theorem. Ordering bound states by energy, , the th excited state has exactly nodes (interior zeros). Motivation: raising tightens the curvature in the allowed region — one more half-oscillation fits before the tails must decay — and must be orthogonal to all lower states, forcing sign changes. (Rigor: Sturm oscillation theory.)
Why bound energies are discrete. Pick a well and a trial ; integrate the TISE from the far left, starting on the physical decaying exponential. Cross the well ( oscillates), emerge on the right: generically with — not normalizable. Only at special energies does , letting decay at both infinities: those are the bound states. As sweeps through an eigenvalue the divergent tail flips sign — and hunting that flip numerically is the shooting method, previewed below and used in earnest in Lesson 3.
Worked Examples
Example 1 — An electron's wavelength and its reach into a wall
An electron with kinetic energy in a region with has
comparable to atomic spacings — why electrons diffract off crystals (P.3.2). Meeting a region with (a deficit), : after of wall the amplitude is down by , the probability density by .
Example 2 — The -function well: the toolkit in action
Let , , and seek a bound state (). For the TISE gives with , so the normalizable solution is — continuous at (rule 1) and even, as parity demands. The jump condition (rule 3, with ):
One equation, one : exactly one bound state. Normalization gives , from . The energy is pinned by matching alone — quantization with almost no algebra.
Hands-on (Python)
Integrate the TISE for a smooth Gaussian well and watch the divergent tail flip sign as sweeps through an eigenvalue. Units: length in , energy in — i.e. in the code only.
import numpy as np
import matplotlib.pyplot as plt
from scipy.integrate import solve_ivp
hbar = m = 1.0 # code units (see note above)
V0 = 4.0
V = lambda x: -V0 * np.exp(-x**2 / 2.0) # smooth Gaussian well
def rhs(x, y, E): # TISE as first-order system, y = (psi, psi')
return [y[1], 2.0 * m * (V(x) - E) / hbar**2 * y[0]]
def shoot(E, x_max=6.0):
"""Integrate from the left forbidden region, starting on the decaying branch."""
kappa = np.sqrt(2.0 * m * abs(E)) / hbar
sol = solve_ivp(rhs, [-x_max, x_max], [1e-8, kappa * 1e-8], args=(E,),
max_step=0.02, rtol=1e-10)
return sol.t, sol.y[0]
for E in [-3.4, -3.0, -2.2, -1.8, -1.4]:
x, psi = shoot(E)
print(f"E = {E:5.2f} psi(x_max) = {psi[-1]:+.2e}")
# E = -3.40 psi(x_max) = +9.79e+02 <- diverges upward
# E = -3.00 psi(x_max) = -3.92e+01 <- sign flip: eigenvalue E0 ~ -3.09 crossed
# E = -2.20 psi(x_max) = -3.09e+00
# E = -1.80 psi(x_max) = -1.91e-01
# E = -1.40 psi(x_max) = +5.98e-03 <- second flip: E1 ~ -1.50 crossedEvery trial diverges — except arbitrarily close to an eigenvalue, where the growing exponential is starved. Bracketing the flips and bisecting is the full shooting method of Lesson 3. Now the curvature rules, on one figure:
E0 = -3.094 # ~ ground-state energy, from the flip above
x, psi = shoot(E0)
psi = psi / np.max(np.abs(psi))
xt = np.sqrt(-2.0 * np.log(-E0 / V0)) # classical turning points, V(x) = E
plt.plot(x, psi, label=r"$\psi$ at $E \approx E_0$")
plt.plot(x, V(x) / V0, "--", label=r"$V/V_0$")
plt.axhline(E0 / V0, color="gray", lw=0.8)
for s in (-xt, xt):
plt.axvline(s, color="k", ls=":", lw=0.8)
plt.xlabel("x"); plt.legend(); plt.show()
# Between the dotted turning points psi curves TOWARD the axis (one nodeless hump:
# the ground state); beyond them it curves AWAY, decaying exponentially.Exercises
E1 (easy). An electron has kinetic energy . Compute , , and , and verify .
Solution
, so , , and . ✓ (Handy: .)
E2 (easy). Show that is an energy eigenfunction of the free particle but not a momentum eigenfunction, and write it in terms of momentum eigenfunctions.
Solution
: energy eigenfunction. But . Indeed : an equal superposition of momenta . Energy cannot tell right-movers from left-movers; momentum can.
E3 (medium). A proton faces the same deficit as the electron in the text. Find its penetration depth and explain why tunneling is a light particle's game.
Solution
at fixed , so — forty-three times shorter. Since transmission goes like (next lesson), a factor in the exponent means the proton's tunneling probability is roughly the electron's raised to the 43rd power.
E4 (medium). Show that a repulsive spike has no bound state, while has exactly one.
Solution
A bound state needs and with (the only normalizable form). The jump condition with gives , i.e. : contradiction. With : , one positive solution — exactly one bound state (, Example 2).
E5 (hard). Prove that 1D bound states are non-degenerate, and conclude that bound eigenfunctions of a symmetric potential are automatically even or odd. Hint: Wronskian.
Solution
Let solve the TISE with the same , both vanishing at . Combining the two TISEs gives , so the Wronskian has : constant — and at infinity, so . Then , i.e. , so : the same state — non-degenerate. If moreover , then is an eigenfunction with the same , so ; reflecting twice, , hence : even or odd. ∎
Checkpoint
- Why is not a physical state, and what plays its role in honest calculations?
- State the three matching rules. When exactly may be discontinuous?
- What does say about the shape of in allowed and forbidden regions?
- For an electron below a barrier top, roughly how far does penetrate?
- In one paragraph: why are bound-state energies discrete?
Answers
- Infinite norm — only delta-normalizable. Physical states are wave packets, with normalizable .
- continuous always; continuous wherever is finite; across , jumps by . Only an infinite spike or wall breaks -continuity.
- Allowed: curvature toward the axis — oscillation with . Forbidden: curvature away — exponentials. Turning points are inflections.
- Penetration depth — about two atomic radii.
- A bound state must ride the decaying exponential on both sides. Integrating from the left on the decaying branch, a generic picks up a growing piece on the right; only at discrete energies does its coefficient vanish (the tail's sign flip is the shooting method's signal).
Further Reading
- [Gri] Griffiths & Schroeter, §2.4–2.5 — the free particle and the delta-function well; our matching toolkit in action.
- [Sha] Shankar, Ch. 5 — one-dimensional problems, with more formalism per pound.
- [ER] Eisberg & Resnick, Ch. 5–6 — qualitative wavefunction sketching done with old-school patience.
← Prev: Wave Packets, Uncertainty & the Momentum Operator · Up: Pre-Term · Next: Step, Well & Barrier →