Measuring spread
Variance and standard deviation
Two games can share the same expected value and have nothing in common: one calm, the other risky. What the expected value ignores, the variance measures.
The problem
| Game | Rule | Expectation |
|---|---|---|
| A | win €1 with probability , lose €1 otherwise | |
| B | win €1000 with probability , lose €1000 otherwise |
Same expectation, same fairness — and yet nobody confuses them. A measure of the spread of values around the mean is missing.
Variance
We measure each value's distance to the mean, square it — so that negative deviations do not cancel positive ones — and take the weighted average:
The variance is always positive or zero. It is zero only if is constant.
The computational formula
Expanding the square gives a much faster formula, the König-Huygens one:
« The mean of the squares minus the square of the mean. » This is the one used in practice. For a fair die:
Standard deviation
The variance is expressed in the square of the unit: euros² for a gain, which means nothing concrete. So we take its square root:
This is the standard deviation, in the unit of . For the die, : results deviate on average by about from the mean of .
Back to the two games above:
| Game | Variance | Standard deviation |
|---|---|---|
| A | € | |
| B | € |
Game B is a thousand times riskier. The standard deviation puts an exact figure on what intuition said.
The properties
Two lessons:
- adding a constant translates the whole distribution without changing its spread — dispersion is insensitive to shifts;
- multiplying by multiplies the variance by , hence the standard deviation by .
μ μ + 5
___/\___ ___/\___
/ \ + 5 / \ same shape,
/ \ ------> / \ same standard deviation
------------------ ------------------
Careful though: holds only if and are independent. That is the big difference from the expected value, which always adds.
Summary
- The variance measures the spread around the mean.
- Computational formula: .
- The standard deviation is in the unit of : that is what gets interpreted.
- : the shift has no effect on dispersion.
- requires independence — unlike the expected value.

