Standard Error: How Precise Is Your Estimate?
Why a sample mean has its own spread — and how that spread shrinks as you collect more data.
Your estimate has a spread of its own
Suppose the average income in a city is some fixed but unknown number. You draw a random sample of 50 people and compute their average income. Your neighbor draws a different random sample of 50 people and computes their average. You will not get exactly the same answer — and neither of you will land exactly on the true city-wide average.
That wobble is unavoidable. Each sample is a slightly different snapshot, so each sample mean is a slightly different estimate. The natural question is: how big is that wobble? If two honest samples can disagree by a mile, your single estimate is shaky. If they barely differ, your estimate is trustworthy. The standard error is the number that answers this question.
SD and SE are two different rulers
These two look almost identical on the page, so it is worth pinning down the difference:
- The standard deviation \( \sigma \) measures how spread out the individual raw values are. Incomes range widely, so \( \sigma \) is large. This does not shrink when you collect more data — the population is just as spread out as it always was.
- The standard error measures how spread out the sample means are. This does shrink as your samples get bigger, because averaging many values smooths out the extremes.
Same units, completely different jobs. One describes the data; the other describes the quality of your estimate.
The formula for the mean
For the special case of a sample mean, the standard error has a clean formula. It ties the spread of your estimate directly to the spread of the raw data and the size of your sample:
Watch the standard error shrink
The simulation below draws sample after sample from a population and piles up their averages. The width of that bottom pile is the standard error — you can read it off directly.
Focus on the sample size n slider. Set n small and the sample means scatter widely: your estimate is imprecise. Raise n and the pile tightens around the true center. The readout Spread of means (SE) is the standard error measured from your draws, and the CLT prediction \( \sigma/\sqrt{n} \) is the theoretical value — watch them track each other as you change n.
- (a) SE = sigma / sqrt(n) = 9 / sqrt(9) = 9 / 3 = 3 cm.
- (b) SE = 9 / sqrt(81) = 9 / 9 = 1 cm. Note that n jumped by a factor of 9 (from 9 to 81) but the standard error only dropped by a factor of 3 (from 3 to 1) — that is the square root at work.
- (c) Set 9 / sqrt(n) = 1, so sqrt(n) = 9, giving n = 81. This matches part (b).
Check your understanding
- Any statistic computed from a sample, like the sample mean, would come out slightly differently for a different random sample.
- The standard error measures that sample-to-sample wobble — it is the standard deviation of the estimate, not of the raw data.
- For the sample mean, SE = sigma/sqrt(n): the population standard deviation divided by the square root of the sample size.
- Standard deviation (sigma) describes the spread of the data and does not change with n; standard error shrinks as n grows.
- Because of the square root, halving the standard error takes four times the data — precision has diminishing returns.