A measure of spread: the average of the squared distances between each value and the mean.
Visual intuition
mean
Standard deviation is the looseness around the mean
Variance scores the same looseness around the mean, using squared gaps — standard deviation is its square root.
Formula
sum((value - mean)^2) / n
Example
For commutes of 20, 30, and 40 minutes the is 30 and the gaps are -10, 0, and 10, so the variance is (100 + 0 + 100) / 3 ≈ 66.7 — and the is about 8.2 minutes.
How It Works
Variance asks: how far do values typically sit from the ? It squares each gap before averaging, so big misses count extra and negative gaps cannot cancel positive ones. The squaring leaves awkward units (minutes squared, dollars squared), which is why its square root — the — is what usually gets reported.