This checkpoint brings together the two core skills of module 7: normalizing a wavefunction and
computing a probability from the Born rule. Both steps are needed for virtually every
quantitative problem in quantum mechanics.
The tools you need
Normalization. A wavefunction ψ(x) is physically valid only when
∫−∞∞∣ψ(x)∣2dx=1.
If the wavefunction is written as ψ(x)=Aψ~(x) with an undetermined constant A,
substituting gives
A2∫−∞∞∣ψ~(x)∣2dx=1⟹A=∫−∞∞∣ψ~(x)∣2dx1.
Probability in an interval. Once ψ is normalized, the Born rule gives the probability of
finding the particle in the interval [a,b] as
P(a≤x≤b)=∫ab∣ψ(x)∣2dx.
A worked walkthrough
Consider the one-sided exponential wavefunction
ψ~(x)=e−x(x≥0),ψ~(x)=0(x<0).
Step 1 — normalize. We need ∫0∞∣ψ~(x)∣2dx. Since ψ~ is real,
∫0∞e−2xdx=[−2e−2x]0∞=0−(−21)=21.
So A2⋅21=1, giving A=2. The normalized wavefunction is
ψ(x)=2e−x(x≥0).
Step 2 — check normalization. As a sanity check,
∫0∞2e−2xdx=2⋅21=1.✓
Step 3 — probability density. The Born rule says the probability density is
∣ψ(x)∣2=2e−2x(x≥0).
This decays exponentially: the particle is most likely found near x=0 and becomes
progressively less likely to be found farther away.
Step 4 — probability in [0,1]. Integrating the density:
P(0≤x≤1)=∫012e−2xdx=[−e−2x]01=1−e−2.
Numerically, e−2≈0.1353, so P≈0.8647 — about 86.5% of the probability
is concentrated in the first unit of length.
Key steps for any normalization problem
Write ψ(x)=Aψ~(x) and identify the integration region where ψ~=0.
Compute I=∫∣ψ~∣2dx over that region.
Set A=1/I (taking the positive real root).
Use ∣ψ∣2=A2∣ψ~∣2 as the probability density to answer any probability question.
Try it
This is a numerical exercise — your code should return a number. Given
ψ(x)=Ae−x for x≥0, first find A so that ψ is normalized, then return
the probability P(0≤x≤1) for the normalized wavefunction. Work it out analytically
and return the exact expression.
Run your code to see the quantum state.
Sign in on the full site to ask questions and join the discussion.