|q⟩ Bad Qubits

beginner · Physics · The Wavefunction & Born Rule

The Born Rule

From amplitudes to probabilities

Quantum mechanics does not predict which single outcome a measurement will yield — it predicts the probabilities of all possible outcomes. The rule that connects the mathematical description of a quantum state to those probabilities is called the Born rule, named after Max Born who proposed it in 1926.

A quantum state is described by a wavefunction ψ\psi. For a continuous variable such as position, ψ(x)\psi(x) is a complex-valued function of xx. For a system with a discrete set of outcomes — like the two-outcome spin measurement of a spin-12\tfrac{1}{2} particle — the state is a superposition

ψ=α0+β1,|\psi\rangle = \alpha|0\rangle + \beta|1\rangle,

where α\alpha and β\beta are complex numbers called probability amplitudes.

The Born rule states:

The probability of obtaining outcome 0|0\rangle upon measurement is P(0)=α2P(0) = |\alpha|^2, and the probability of obtaining outcome 1|1\rangle is P(1)=β2P(1) = |\beta|^2.

More generally, if the state is written as a superposition ψ=ncnn|\psi\rangle = \sum_n c_n |n\rangle, then

P(outcome n)=cn2.P(\text{outcome } n) = |c_n|^2.

The absolute-value-squared cn2|c_n|^2 takes the complex amplitude cn=a+bic_n = a + bi and returns the real non-negative number a2+b2a^2 + b^2, which is a valid probability.

Normalization is essential

For the probabilities to sum to one — as any complete set of probabilities must — the state must satisfy the normalization condition:

ncn2=1(discrete),ψ(x)2dx=1(continuous).\sum_n |c_n|^2 = 1 \quad \text{(discrete)}, \qquad \int_{-\infty}^{\infty} |\psi(x)|^2\, dx = 1 \quad \text{(continuous)}.

This is not a separate postulate but a direct consequence of demanding that the total probability of getting some outcome equals 11.

As a quick check, consider ψ=150+251|\psi\rangle = \tfrac{1}{\sqrt{5}}|0\rangle + \tfrac{2}{\sqrt{5}}|1\rangle. The two squared amplitudes are

152+252=15+45=1.\left|\frac{1}{\sqrt{5}}\right|^2 + \left|\frac{2}{\sqrt{5}}\right|^2 = \frac{1}{5} + \frac{4}{5} = 1. \checkmark

Applying the rule

To find the probability of a specific outcome, isolate its amplitude and square the modulus:

P(0)=152=15=0.2,P(1)=252=45=0.8.P(0) = \left|\frac{1}{\sqrt{5}}\right|^2 = \frac{1}{5} = 0.2, \qquad P(1) = \left|\frac{2}{\sqrt{5}}\right|^2 = \frac{4}{5} = 0.8.

The procedure works identically when amplitudes are complex. For example, if α=35i\alpha = \tfrac{3}{5}i, then α2=(35)2=925|\alpha|^2 = \left(\tfrac{3}{5}\right)^2 = \tfrac{9}{25}, since the modulus of riri is rr for real rr.

The continuous case

For a particle moving in one dimension the state is described by a wavefunction ψ(x)\psi(x), and the Born rule becomes an integral: the probability of finding the particle in the interval [a,b][a, b] is

P(axb)=abψ(x)2dx.P(a \le x \le b) = \int_a^b |\psi(x)|^2\, dx.

The function ψ(x)2|\psi(x)|^2 is called the probability density: it is non-negative everywhere and integrates to 11 over all space. The connection to the discrete case is direct — replace the sum over outcomes with an integral over positions.

Try it

This is a numerical exercise — your code should return a number. Given the state

ψ=150+251,|\psi\rangle = \frac{1}{\sqrt{5}}|0\rangle + \frac{2}{\sqrt{5}}|1\rangle,

apply the Born rule to compute the probability of obtaining outcome 0|0\rangle.

Run your code to see the quantum state.

Sign in on the full site to ask questions and join the discussion.