Lesson 10 / 13 · 13 min read
Sampling Distributions & the Central Limit Theorem
Why sample means are predictable — the engine behind all of inference.
What is a sampling distribution?
Take many samples of size n from a population and compute the mean xˉ of each one. Those means form their own distribution — the sampling distribution of the mean. It describes how much xˉ bounces around from sample to sample.
The center and spread of xˉ
If the population has mean μ and standard deviation σ, then across samples of size n:
μxˉ=μσxˉ=nσ
- xˉ is unbiased — it centers on the true μ.
- Its spread, called the standard error, shrinks as n grows. Bigger samples give more reliable means.
Notice the n: to halve the standard error you need four times the data.
The Central Limit Theorem
For a large enough sample size (a common threshold is n≥30), the sampling distribution of xˉ is approximately normal — regardless of the population's shape.
This is the punchline of intro statistics. Even a skewed, lumpy population produces a bell-shaped distribution of sample means. It's the reason the normal distribution shows up everywhere in inference. (If the population is already normal, xˉ is normal for any n.)
Worked example
A population has μ=70 and σ=12. For samples of size n=36:
μxˉ=70σxˉ=3612=612=2
By the CLT, xˉ is approximately normal with mean 70 and standard error 2. So about 95% of sample means fall within 70±2(2)=[66,74].
What's P(xˉ>74)? That's 2 standard errors above the mean, so about 2.5%.
Why it matters
Confidence intervals and hypothesis tests both depend on knowing how xˉ behaves. The CLT hands that to us: approximately normal, centered at μ, with standard error σ/n.
Key takeaways
- A sampling distribution describes how a statistic varies across repeated samples.
- xˉ centers at μ with standard error σ/n (it shrinks like n).
- CLT: for n≥30, xˉ is approximately normal whatever the population shape.
- That guaranteed normality is what makes confidence intervals and tests work.