Spin-1/2 Systems
Spin-1/2 is the smallest nontrivial quantum laboratory. Its Hilbert space is two-dimensional, but it already contains incompatible observables, sequential measurement effects, unitary rotations, density matrices, entanglement, and the difference between amplitudes and probabilities. This is why Sakurai starts with Stern-Gerlach analyzers instead of beginning with differential equations.
Sakurai's treatment is operational and experimental: beams split, recombine, and reveal the logic of spin states. Ballentine returns to spin for measurement and state preparation, emphasizing what is inferred from repeated preparations. The Gottfried-named notes use spin-1/2 as a clean illustration of the postulates and density matrices. Schiff's older notation usually reaches spin after wave mechanics, so the contrast is mainly pedagogical.
Definitions
The standard basis is
The Pauli matrices are
Spin operators are
They satisfy
and
A general normalized spinor can be written, up to global phase, as
where is a unit vector on the Bloch sphere:
The observable for spin along is
Key results
The Pauli matrices obey
This identity makes two-level calculations compact. For any unit vector ,
so has eigenvalues .
The projectors onto spin up and down along are
If a state has Bloch vector , with density matrix
then
For a pure state, . For a mixed state, . The completely unpolarized beam has and gives for every analyzer direction.
Rotations are represented by
The half-angle is essential. A rotation changes a spinor sign, although all single-state probabilities remain unchanged. Sakurai uses this feature to emphasize that spin is not a tiny classical spinning ball.
In a magnetic field with Hamiltonian
the Bloch vector precesses about at the Larmor frequency up to sign convention. This connects the algebra of Pauli matrices to magnetic resonance and two-level dynamics.
Visual
| Direction | Spin-up ket in basis | Spin-down ket in basis |
|---|---|---|
Worked example 1: Sequential Stern-Gerlach analyzers
Problem. A beam is prepared in . It passes through an analyzer, and only the output is kept. That beam then passes through an analyzer. What are the final probabilities?
Method.
- Express in the basis:
- The probability to pass the selection is
-
Conditional on being selected, the state is now .
-
Expand in the basis:
- Therefore
Checked answer. The final result is not certainly . The intermediate incompatible selection changed the state. This is the central lesson of Sakurai's sequential Stern-Gerlach discussion.
Worked example 2: Spin precession in a z-directed magnetic field
Problem. A spin starts in and evolves under
Find the probability of measuring at time .
Method.
- Write the initial state:
- The evolution operator is
- Evolve the state:
- Project onto :
- Square the modulus:
Checked answer. At , the probability is . At , the spin has rotated to and the probability is .
Code
import numpy as np
sx = np.array([[0, 1], [1, 0]], dtype=complex)
sz = np.array([[1, 0], [0, -1]], dtype=complex)
plus_x = np.array([1, 1], dtype=complex) / np.sqrt(2)
omega = 1.0
for t in [0, np.pi / 2, np.pi]:
u = np.diag([np.exp(-1j * omega * t / 2), np.exp(1j * omega * t / 2)])
psi_t = u @ plus_x
prob_plus_x = abs(np.vdot(plus_x, psi_t)) ** 2
print(t, prob_plus_x, np.vdot(psi_t, sx @ psi_t).real, np.vdot(psi_t, sz @ psi_t).real)
Common pitfalls
- Calling spin-up along one axis the same state as spin-up along another axis. and are different states.
- Forgetting that Stern-Gerlach selection is state preparation, not passive observation.
- Losing the factor of in spin rotations. Spinors rotate with .
- Treating the sign change under a spinor rotation as directly observable for a single isolated spin state. It becomes observable through interference.
- Using Pauli matrices without the factor when computing physical angular momentum.
- Confusing a mixed unpolarized beam with a coherent superposition. is not the same preparation as .
- Expecting repeated incompatible measurements to preserve earlier information. An selection erases definite preparation in the projective model.
Spin-1/2 calculations are often short enough that students skip the physical story, but the story is what prevents sign and basis errors. Always name the preparation axis, the measurement axis, and whether a beam is selected or recombined. A selected beam is a new preparation. A recombined pair of beams can restore interference if relative phase information has been preserved. Sakurai's sequential Stern-Gerlach examples are built around exactly this distinction.
The Bloch-sphere picture is powerful but has limits. Every pure spin-1/2 state corresponds to a point on the sphere, and every mixed spin-1/2 state corresponds to a point inside it. That picture does not mean the spin is a tiny arrow already pointing in that direction before measurement. It means the state assigns probabilities for all possible spin-axis measurements by the rule . Ballentine's ensemble language is a useful guardrail: the vector summarizes preparation statistics, not necessarily hidden classical orientation.
When using Pauli matrices, keep track of whether you are computing dimensionless matrix algebra or physical angular momentum. The matrices have eigenvalues , while has eigenvalues . Rotation operators use in the exponent for spin-1/2, and Hamiltonians use the physical magnetic moment, which may introduce signs through charge and gyromagnetic ratio. Many wrong Larmor-precession answers are only sign-convention mistakes, but those signs matter when comparing to an experiment.
Spin also previews later themes. Two spin-1/2 systems decompose into singlet and triplet sectors, giving the simplest nontrivial example of angular-momentum addition. The singlet gives the cleanest Bell-correlation example. Mixed spin beams are the easiest density-matrix examples. For that reason, mastering this page pays off repeatedly.