Measurement and Interpretation
Measurement is where the formal rules meet the question of what quantum states mean. The operational calculations are clear: use projectors or more general measurement operators to compute probabilities and update descriptions. The interpretation of that update is the disputed part.
Sakurai discusses measurements from the start through Stern-Gerlach experiments and later through spin correlations and Bell inequalities. Ballentine is the major contrast source here: he strongly emphasizes an ensemble interpretation and resists reading the state vector as the complete physical condition of one individual system. The Gottfried-named notes include postulates, spin measurement, density matrices, and interpretation remarks. Schiff's older treatment is closer to traditional Copenhagen language.
Definitions
For a projective measurement of an observable
the probability of outcome is
After obtaining , the ideal projected state is
For a density operator,
and
conditioned on outcome .
A more general measurement is described by measurement operators satisfying
Outcome probabilities are
and conditional states are
A pointer basis is the set of apparatus states that become robustly correlated with outcomes after environmental decoherence.
Key results
The projection rule is repeatable for ideal sharp measurements. If the system is projected into the eigenspace of , an immediate repetition of the same measurement gives the same result with probability one:
The distinction between a proper mixture and an improper mixture matters conceptually. A proper mixture represents classical uncertainty over preparations:
An improper mixture arises as a reduced state from entanglement:
The density matrix may have the same numerical form in both cases, but the physical story differs.
Bell-type results show that quantum correlations cannot be reproduced by local hidden-variable theories satisfying the relevant assumptions. Sakurai's spin-correlation treatment uses entangled spin states to show how measurement choices at separated analyzers produce correlations stronger than classical local models allow. Ballentine accepts the quantum predictions but frames the state vector statistically rather than as a direct individual-system ontology.
Interpretation sketches:
- Copenhagen family: the formalism gives probabilities for measurement outcomes; collapse is often treated as an update tied to measurement context.
- Many-worlds: the universal state evolves unitarily; apparent outcomes correspond to decohered branches.
- Ensemble interpretation: the state describes an ensemble of similarly prepared systems, not necessarily a complete description of one individual system.
These interpretations agree on standard laboratory probabilities in the domain covered here. They differ on what the mathematical state is saying about reality.
Visual
| Interpretation | State-vector meaning | Collapse/status of outcomes | Strength |
|---|---|---|---|
| Copenhagen family | context-dependent prediction tool | primitive or effective update | close to lab practice |
| Many-worlds | universal physical state | no fundamental collapse | keeps unitary dynamics universal |
| Ensemble | statistical description of preparations | update of selected ensemble | emphasizes operational probabilities |
| Decoherence program | reduced states become effectively diagonal | explains classical appearance, not selection alone | physically models apparatus/environment |
Worked example 1: Projective measurement with density matrices
Problem. A spin-1/2 system has
where . Measure . Find the probabilities and the unconditioned post-measurement state.
Method.
- The projectors are
- Compute probabilities:
- If the outcome is not recorded or is ignored, the nonselective measurement map is
- Calculate:
and
- Add:
Checked answer. The measurement removes coherence between and in the nonselective description, while leaving the probabilities unchanged.
Worked example 2: Bell singlet correlation
Problem. For the singlet state
the spin correlation along unit vectors and is
State the result and check two limits.
Method.
-
The singlet is rotationally invariant and has total spin zero.
-
The standard Pauli-matrix result is
- If , then
This means perfect anticorrelation for measurements along the same axis.
- If , then
There is no average correlation for perpendicular axes.
- If the angle is ,
Checked answer. The result matches the same-axis singlet property and gives the cosine dependence used in Bell-inequality tests.
Code
import numpy as np
rho = 0.5 * np.array([[1, 0.6], [0.6, 1]], dtype=complex)
p_plus = np.array([[1, 0], [0, 0]], dtype=complex)
p_minus = np.array([[0, 0], [0, 1]], dtype=complex)
rho_after = p_plus @ rho @ p_plus + p_minus @ rho @ p_minus
print("probabilities:", np.trace(rho @ p_plus).real, np.trace(rho @ p_minus).real)
print(rho_after)
Common pitfalls
- Treating collapse as the only possible interpretation of the update rule. The calculation is shared; the ontology is debated.
- Ignoring unconditioned measurement. If the outcome is not selected, use the sum over outcomes, not a single projected state.
- Confusing decoherence with a literal proof that one outcome occurred. Decoherence explains suppression of interference in reduced descriptions.
- Forgetting that density matrices with the same entries can arise from different preparation stories.
- Assuming Bell correlations allow faster-than-light signaling. They do not; local outcome statistics remain marginally random.
- Treating generalized measurements as exotic. Real apparatus often implements nonideal measurements better modeled by than by sharp projectors.
- Mixing interpretive claims into numerical predictions without saying which is which.
A disciplined measurement analysis starts with the actual record. If a detector distinguishes two outcomes, the probabilities must be assigned to those outcomes. If several microscopic alternatives lead to the same unresolved record, add the corresponding amplitudes before squaring when coherence is preserved; add probabilities when decoherence or recorded which-path information makes the alternatives distinguishable. Many apparent paradoxes come from switching between these two rules mid-problem.
Projection is an idealization. It is appropriate for sharp, repeatable measurements of observables with well-defined eigenspaces. Real measurements may be weak, noisy, inefficient, or destructive, and generalized measurement operators model those cases more flexibly. The projective postulate remains central because it is simple, experimentally relevant in many limits, and sufficient for the core Stern-Gerlach and spectral examples used throughout this wiki.
Interpretation should not be used to patch a calculation. Copenhagen-style language, many-worlds branching, and ensemble updating all reproduce the same Born probabilities for the standard examples here. If two interpretations appear to give different numerical predictions for an ordinary spin measurement, the setup has likely been described differently. First settle the Hilbert space, Hamiltonian, measurement operators, and conditioning. Then discuss what the state update means.
Decoherence explains why macroscopic measurement records are stable in practice. When apparatus pointer states become entangled with many environmental degrees of freedom, interference between macroscopically distinct records becomes inaccessible locally. This supports the emergence of classical-looking alternatives, but by itself it does not answer every interpretive question about why a particular outcome is experienced. That is why measurement remains both a technical topic and a conceptual one.
For practical calculations, write the measurement as a map before interpreting it. A selective projective measurement uses . A nonselective projective measurement uses . A generalized measurement uses with . These maps answer different laboratory questions. Once the map is clear, interpretation can be discussed without changing the arithmetic.
Bell experiments are a useful guardrail against overly classical pictures. The singlet correlations are not explained by assigning preexisting spin values along all axes while preserving locality in the Bell sense. At the same time, the correlations cannot be used for controllable faster-than-light communication because each local marginal distribution is random. Both statements are part of the standard quantum prediction.
The best habit is to label interpretive sentences separately from predictive equations. The equations say what probabilities a preparation and measurement imply. The interpretation says what those equations mean. Keeping the layers separate makes disagreements clearer and prevents philosophical language from hiding a missing projector, trace, or normalization.