Observables & the Measurement Postulate
Observables & the Measurement Postulate
Postulate 2 connects the abstract state vector to the laboratory. It tells us what is measurable (the eigenvalues of Hermitian operators), with what probability (the Born rule), and what happens to the state afterward (collapse). This is the postulate that makes quantum mechanics probabilistic and irreversible-on-measurement — and it is built entirely from the spectral theorem you proved in Term 0. Course 1.3 expands every piece; here we state the axiom and its core consequences.
Learning Objectives
After this lesson you will be able to:
- State Postulate 2 using the spectral decomposition of a Hermitian observable.
- Compute outcome probabilities via the Born rule and the expectation value .
- Determine the post-measurement state (collapse) and explain repeatability.
- Connect "observable = Hermitian operator" to the spectral theorem and real eigenvalues.
- Simulate projective measurements in NumPy.
Intuition
Classically, you read off a property and the system is unchanged. Quantum measurement is different in three ways. First, the possible results of measuring a quantity are constrained — they are exactly the eigenvalues of the operator representing that quantity. Second, the result is random, with probabilities set by how much the state "overlaps" each eigenspace (the Born rule). Third, the act of measuring changes the state: it collapses onto the eigenspace of the result you got. Measure again immediately and you get the same answer — measurement is repeatable, but the first one already disturbed the system.
Theory
Postulate 2 (Observables and measurement)
Postulate 2. An observable is a Hermitian operator on the state space, with spectral decomposition (from 0.1.5)
where are the (real, distinct) eigenvalues and the orthogonal projectors onto their eigenspaces. Measuring on state yields outcome with probability
and immediately after a result , the state collapses to the normalized projection
Why Hermitian? Because measured values are real numbers, and Hermitian operators are exactly those with real eigenvalues and an orthonormal eigenbasis (0.1.6). The orthonormal eigenbasis guarantees the outcomes are perfectly distinguishable and the projectors resolve the identity.
The Born rule is a probability distribution
The numbers are a valid distribution: each $p(\lambda_k) = \langle\psi|P_k|\psi\rangle = \langle\psi|P_k^\dagger P_k|\psi\rangle = \lVert P_k\lvert\psi\rangle\rVert^2 \ge 0$ (projectors are Hermitian idempotents), and they sum to one,
using completeness and normalization. This is the physical meaning of the Parseval identity and of normalization from 1.1.1. For a non-degenerate observable with eigenvectors , and the Born rule takes its familiar form .
Expectation value
The expectation value (mean outcome over many measurements on identically prepared states) is
So the operator does double duty: its eigenvalues are the outcomes, and the sandwich is their average. (This is real because is Hermitian.) The variance and the uncertainty relation are built from this in 1.3.2.
Collapse and repeatability
After outcome , the state is , which lies entirely in the -eigenspace. Measure again: now so — the same result with certainty. Measurement is repeatable, but the first measurement has irreversibly disturbed any prior superposition. This irreversibility is unique to measurement; ordinary evolution (Postulate 3) is reversible.
Compatibility (preview). Two observables can be measured simultaneously with definite values iff they commute (), i.e. share an eigenbasis (0.1.5). Incompatible observables (like and ) obey an uncertainty relation — 1.3.2.
Worked Examples
Example 1 — Measuring on
The observable has projectors $P_{+1} = \lvert0\rangle\langle0|P_{-1} = \lvert1\rangle\langle1|\lvert+\rangle = \tfrac1{\sqrt2}(\lvert0\rangle+\lvert1\rangle)$:
Expectation . If the result is , the state collapses to .
Example 2 — Same state, different observable ( on )
Measure on . Since is the eigenvector, and : a certain outcome, , and no collapse. The same state is "random" for but "definite" for — measurement outcomes are observable-relative, the seed of complementarity.
Hands-on (Python)
import numpy as np
ket0 = np.array([1, 0], dtype=complex)
ket1 = np.array([0, 1], dtype=complex)
plus = (ket0 + ket1) / np.sqrt(2)
def projective_measure(psi, projectors, eigenvalues, rng=None):
"""Sample one outcome via the Born rule and return (eigenvalue, collapsed state)."""
rng = rng or np.random.default_rng()
probs = [np.real(psi.conj() @ (P @ psi)) for P in projectors] # <ψ|P_k|ψ>
k = rng.choice(len(projectors), p=probs)
collapsed = (projectors[k] @ psi) / np.sqrt(probs[k])
return eigenvalues[k], collapsed
# Z-measurement on |+>:
P0 = np.outer(ket0, ket0.conj()) # projector for eigenvalue +1
P1 = np.outer(ket1, ket1.conj()) # projector for eigenvalue -1
val, post = projective_measure(plus, [P0, P1], [+1, -1],
rng=np.random.default_rng(0))
print("outcome:", val, " collapsed to:", np.round(post, 3)) # +1 -> |0> (rng-dependent)
# Expectation <Z> = <ψ|Z|ψ> directly:
Z = np.array([[1, 0], [0, -1]], dtype=complex)
print("〈Z〉 =", np.real(plus.conj() @ Z @ plus)) # 0.0# Empirical Born statistics over many shots match the predicted 50/50:
from collections import Counter
rng = np.random.default_rng(1)
counts = Counter(projective_measure(plus, [P0, P1], [+1, -1], rng)[0] for _ in range(2000))
print(counts) # ~ Counter({1: ~1000, -1: ~1000})On Braket. A real device or simulator only ever returns samples (shots), exactly like
projective_measureabove — never the amplitudes. You estimate probabilities and expectation values from finite shots, with the error you derived in 0.2.2. You'll measure on the local simulator in 1.2.3.
Exercises
E1 (easy). For , give the -measurement probabilities and .
Solution
, . .
E2 (easy). Show the Born probabilities sum to for any normalized state and any observable, in one line.
Solution
by completeness and normalization. ∎
E3 (medium). Prove is real for any Hermitian (without invoking the eigenvalue formula).
Solution
using (and ). A number equal to its own conjugate is real. ∎
E4 (medium). A qubit is measured with the observable in state . Find the outcome probabilities, , and the post-measurement states.
Solution
, so and . . Post-measurement: outcome ; outcome .
E5 (hard). Show that if is an eigenvector of observable , the measurement of is deterministic and leaves the state unchanged. Conversely, argue that zero variance implies the state is an eigenvector.
Solution
If then , so and all others ; the collapse is unchanged. Conversely the variance ; being a sum of nonnegative terms, it is iff all probability sits on a single eigenvalue, i.e. lies in one eigenspace — an eigenvector. ∎ (Formalized in 1.3.2.)
Checkpoint
- State Postulate 2, including the role of the spectral decomposition.
- Write the Born rule and prove the probabilities sum to .
- Give two equivalent formulas for the expectation value .
- What is the post-measurement state, and what does repeatability mean?
- Why must observables be Hermitian?
Answers
- Observables are Hermitian ; measuring gives outcome w.p. and collapses the state to .
- ; .
- .
- , lying in the -eigenspace; an immediate re-measurement returns with certainty.
- Measured values are real and outcomes must be perfectly distinguishable; Hermitian operators have real eigenvalues and an orthonormal eigenbasis.
Further Reading
- [NC] Nielsen & Chuang, §2.2.3 (Postulate 3, measurement) and §2.2.5 (projective measurements).
- [Sak] Sakurai & Napolitano, §1.4 — measurements, observables, expectation values.
- [Pre] Preskill, Ph219, Ch. 2 — the measurement axiom.
← Prev: The State Postulate · Up: Term 1 · Next: The Evolution Postulate →