Checkpoint: Spin Measurements
This checkpoint synthesises every tool developed in the module: the Born rule, the eigenbases of , , and , the collapse postulate, and sequential measurements. Work through each part carefully before computing the final answer.
Recap: the key eigenstates
The eigenstates and (equivalently and in qubit notation) form the standard basis. Every other spin direction has eigenstates that are superpositions of these two. For and :
These relations follow directly from diagonalising the Pauli matrices and . You can verify normalisation: for both , and for both .
The Born rule
For any state and any eigenstate of an observable, the probability of obtaining the corresponding eigenvalue is
The inner product is the probability amplitude. Its squared modulus gives the probability. Because probabilities are real and non-negative, only the modulus of the amplitude matters for a single outcome — the phase is irrelevant.
The collapse postulate
After a measurement yields eigenvalue , the state of the system collapses to the corresponding eigenstate. Any subsequent measurement treats the collapsed state as the new initial condition. Sequential measurements therefore require two independent applications of the Born rule.
Sequential measurements: the joint probability
Suppose a spin- particle is prepared in
Check normalization: . Good.
Step 1. The particle enters a Stern-Gerlach device oriented along . The probability of obtaining is
Compute the amplitude:
Therefore
Step 2. Only the particles that gave continue. Their state has collapsed to . These particles now enter a second device, oriented along . The probability of obtaining is
Note that does not depend on the original state at all — the collapse to in step 1 has erased all information about the initial amplitudes.
Joint probability. The events are sequential and the conditional probabilities are computed from collapsed states, so the joint probability of both outcomes in order is
= P_1 \times P_2 = \frac{9}{10} \times \frac{1}{2} = \frac{9}{20} = 0.45.$$ <Callout type="tip"> The result $P_2 = 1/2$ regardless of the initial state illustrates a deep feature of quantum measurement: sending a particle through an x-filter completely randomises its z-spin. This is why sequential Stern-Gerlach measurements reveal the incompatibility of spin components — no hidden variable can restore the original z-information after the x-measurement. </Callout> ## Try it This is a numerical exercise — your code should `return` a number. Reproduce the two-step calculation above and return the joint probability $P(S_x = +\hbar/2,\,\text{then}\,S_z = +\hbar/2)$ for the state $|\psi\rangle = \frac{1}{\sqrt{5}}|{\uparrow}\rangle_z + \frac{2}{\sqrt{5}}|{\downarrow}\rangle_z$. <RunnableExample />Sign in on the full site to ask questions and join the discussion.