Measurement Statistics
A single quantum measurement gives one eigenvalue, chosen at random. The interesting physics lies in the spread of those outcomes when you repeat the measurement on many identically prepared copies of the same state. That spread is captured by the standard deviation , sometimes called the uncertainty in .
Variance from the Born rule
Let be an observable with eigenvalues and corresponding probabilities when the system is in state . The expectation value is
The variance measures how far individual outcomes typically stray from that mean:
Expanding the square and using gives the computationally convenient identity
This is exactly the classical formula for variance, now applied to quantum probabilities. The standard deviation is .
Operator form
In Dirac notation the same result reads
An equivalent, often-used form defines the shifted operator , so that
Both expressions are identical; the shift form makes it manifest that , with equality only when is an eigenstate of .
Worked example: Pauli-Z in a weighted superposition
Consider the state
measured in the basis. The eigenvalues of are (for ) and (for ), so the Born-rule probabilities are and .
Step 1 — expectation value:
Step 2 — expectation value of the square. Because (squaring a Pauli gives the identity), every eigenvalue squared equals :
Step 3 — variance and standard deviation:
\qquad \Delta\sigma_z = \frac{\sqrt{3}}{2} \approx 0.866.$$ The outcome is not certain ($\Delta\sigma_z \neq 0$), but it is not maximally uncertain either. Compare with the $|+\rangle = \tfrac{1}{\sqrt{2}}(|0\rangle+|1\rangle)$ state, where $\langle\sigma_z\rangle = 0$ and $\Delta\sigma_z = 1$ — the largest possible spread for a $\pm 1$ observable. <Callout type="tip"> For any two-outcome observable with eigenvalues $+1$ and $-1$ and probabilities $p$ and $1-p$, the variance simplifies to $1 - (2p-1)^2 = 4p(1-p)$, which is maximised at $p = 1/2$ and equals zero at $p = 0$ or $p = 1$. </Callout> ## Zero variance: the eigenstate case When $|\psi\rangle$ is already an eigenstate of $\hat{A}$ with eigenvalue $a$, all probability sits at a single outcome. Then $\langle\hat{A}\rangle = a$, $\langle\hat{A}^2\rangle = a^2$, and $(\Delta A)^2 = a^2 - a^2 = 0$. No measurement of $\hat{A}$ on this state will ever surprise you — the spread is literally zero. This is why eigenstates are sometimes called **states with definite values** of the corresponding observable. ## Try it This is a numerical exercise — your code should `return` a number. For the state $|\psi\rangle = \sqrt{3/4}\,|0\rangle + \sqrt{1/4}\,|1\rangle$ and the observable $\sigma_z$, compute the standard deviation $\Delta\sigma_z$. <RunnableExample />Sign in on the full site to ask questions and join the discussion.