James's Math Hub
Statistics & Probability

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 nn from a population and compute the mean xˉ\bar{x} of each one. Those means form their own distribution — the sampling distribution of the mean. It describes how much xˉ\bar{x} bounces around from sample to sample.

The center and spread of xˉ\bar{x}

If the population has mean μ\mu and standard deviation σ\sigma, then across samples of size nn:

μxˉ=μσxˉ=σn\mu_{\bar{x}} = \mu \qquad \sigma_{\bar{x}} = \frac{\sigma}{\sqrt{n}}

  • xˉ\bar{x} is unbiased — it centers on the true μ\mu.
  • Its spread, called the standard error, shrinks as nn grows. Bigger samples give more reliable means.

Notice the n\sqrt{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 n30n \geq 30), the sampling distribution of xˉ\bar{x} is approximately normalregardless 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ˉ\bar{x} is normal for any nn.)

Worked example

A population has μ=70\mu = 70 and σ=12\sigma = 12. For samples of size n=36n = 36:

μxˉ=70σxˉ=1236=126=2\mu_{\bar{x}} = 70 \qquad \sigma_{\bar{x}} = \frac{12}{\sqrt{36}} = \frac{12}{6} = 2

By the CLT, xˉ\bar{x} is approximately normal with mean 7070 and standard error 22. So about 95%95\% of sample means fall within 70±2(2)=[66,74]70 \pm 2(2) = [66, 74].

What's P(xˉ>74)P(\bar{x} > 74)? That's 2 standard errors above the mean, so about 2.5%2.5\%.

Why it matters

Confidence intervals and hypothesis tests both depend on knowing how xˉ\bar{x} behaves. The CLT hands that to us: approximately normal, centered at μ\mu, with standard error σ/n\sigma / \sqrt{n}.

Key takeaways

  • A sampling distribution describes how a statistic varies across repeated samples.
  • xˉ\bar{x} centers at μ\mu with standard error σ/n\sigma / \sqrt{n} (it shrinks like n\sqrt{n}).
  • CLT: for n30n \geq 30, xˉ\bar{x} is approximately normal whatever the population shape.
  • That guaranteed normality is what makes confidence intervals and tests work.