Skip to content

Sampling Distributions and the Central Limit Theorem

In this lesson you’ll learn what a sampling distribution is, the Central Limit Theorem and why it’s the most important result in statistics, the standard error and how it shrinks with sample size, and why quadrupling your sample only halves your error.

Take a sample of 50 people and compute the mean height. Take another 50 and compute it again. You’ll get a slightly different number. And again, slightly different.

The sampling distribution is the distribution of a statistic across all possible samples of a given size.

This is a genuinely different kind of distribution from the ones so far, and the distinction matters:

  • The population distribution describes individual values.
  • The sampling distribution describes the statistic computed from samples.

A population of incomes might be wildly skewed. The distribution of sample means from that population is a separate thing entirely, and as we’ll see, it behaves far better.

Here is the result that makes statistical inference possible.

Central Limit Theorem. For a sufficiently large sample size, the sampling distribution of the sample mean is approximately normal, regardless of the shape of the population distribution, with

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

Three claims are packed in there:

  1. The mean of sample means equals the population mean. The sample mean is an unbiased estimator: it doesn’t systematically run high or low.
  2. The spread shrinks by n\sqrt{n}. Larger samples give means clustered more tightly around the truth.
  3. The shape becomes normal, no matter what the population looked like.

That third point is the remarkable one.

Start with a population that’s wildly skewed, or bimodal, or uniform. Take many samples, compute each mean, and plot those means. The result is a bell curve. The population’s shape essentially stops mattering.

Nearly all the inference machinery in the rest of this section, confidence intervals and hypothesis tests alike, relies on knowing the sampling distribution. The CLT hands you that distribution for free without requiring the population to be normal.

Without the CLT you’d need a different method for every population shape, and you’d need to know that shape, which you generally don’t. With it, one normal-based toolkit covers almost everything.

The usual rule of thumb is n30n \geq 30.

Like all rules of thumb, it depends:

  • Population already normal - any nn works, even n=2n = 2.
  • Roughly symmetric - nn around 15 is often fine.
  • Moderately skewed - n30n \geq 30 is the standard guidance.
  • Severely skewed or heavy-tailed - may need nn in the hundreds.

For proportions the analogous condition is np10np \geq 10 and n(1p)10n(1-p) \geq 10.

The standard error is the standard deviation of the sampling distribution:

SE=σnSE = \frac{\sigma}{\sqrt{n}}

It measures how much sample means bounce around from sample to sample. Small standard error means your estimate is precise.

Keep the two straight:

  • σ\sigma describes the spread of individual values in the population. It does not change when you collect more data.
  • SESE describes the spread of the sample mean. It shrinks as nn grows.

Confusing these is common. Collecting more data does not make people’s heights less variable; it makes your estimate of the average height more precise.

When σ\sigma is unknown, which is nearly always, use the sample standard deviation:

SEsnSE \approx \frac{s}{\sqrt{n}}

The n\sqrt{n} has an important practical consequence: precision improves slowly.

To halve the standard error, you must quadruple the sample size.

nnSESE (with σ=10\sigma = 10)
252.00
1001.00
4000.50
16000.25

Each halving of error costs four times the data. This is why polls settle around 1,000 respondents: going to 4,000 quadruples the cost to halve the margin of error, and going to 16,000 for another halving is rarely worth it. There’s a point of diminishing returns, and it arrives quickly.

Example 1: Describe the sampling distribution.

A population has μ=100\mu = 100, σ=20\sigma = 20. Samples of size 64 are drawn. Describe the sampling distribution of xˉ\bar{x}.

Solution.

μxˉ=100SE=2064=208=2.5\mu_{\bar{x}} = 100 \qquad SE = \frac{20}{\sqrt{64}} = \frac{20}{8} = 2.5

Since n=6430n = 64 \geq 30, the CLT applies, so xˉ\bar{x} is approximately N(100,2.52)N(100, 2.5^2).

Individual values have σ=20\sigma = 20; sample means have SE=2.5SE = 2.5, eight times tighter.

Example 2: Probability about a sample mean.

Using the distribution above, find the probability a sample mean exceeds 105.

Solution. Standardize using the standard error, not σ\sigma:

z=1051002.5=2z = \frac{105 - 100}{2.5} = 2

By the empirical rule, about 2.5% of the area lies beyond z=2z = 2.

P(xˉ>105)0.025P(\bar{x} > 105) \approx 0.025

Using σ=20\sigma = 20 instead would give z=0.25z = 0.25 and a completely wrong answer near 40%. This is the most common error in this topic. Questions about a sample mean use SESE; questions about a single individual use σ\sigma.

Example 3: Individual versus mean.

Same population (μ=100\mu = 100, σ=20\sigma = 20). Compare the probability that one individual exceeds 105 with the probability that a sample of 64 has a mean exceeding 105.

Solution.

For one individual:

z=10510020=0.25P0.40z = \frac{105-100}{20} = 0.25 \quad \Rightarrow \quad P \approx 0.40

For the sample mean, from Example 2, P0.025P \approx 0.025.

So 40% versus 2.5%. Individuals vary a lot; averages of 64 individuals vary very little. Extreme individuals are common, extreme averages are rare, and that averaging-out is the whole reason samples are informative.

Example 4: The CLT with a skewed population.

Incomes in a city are strongly right-skewed with μ=55,000\mu = 55{,}000 and σ=30,000\sigma = 30{,}000. Samples of 100 are taken. Is the sampling distribution of xˉ\bar{x} skewed?

Solution. No, approximately normal. The population’s skew doesn’t transfer to the sampling distribution once nn is large enough, and n=100n = 100 is comfortable even for moderate skew.

μxˉ=55,000SE=30,000100=3,000\mu_{\bar{x}} = 55{,}000 \qquad SE = \frac{30{,}000}{\sqrt{100}} = 3{,}000

This is exactly why we can do inference on income data with normal-based methods despite income being famously non-normal.

Example 5: Required sample size.

How large a sample is needed for a standard error of 1 when σ=15\sigma = 15?

Solution.

1=15nn=15n=2251 = \frac{15}{\sqrt{n}} \quad \Rightarrow \quad \sqrt{n} = 15 \quad \Rightarrow \quad n = 225

Now try halving the target to SE=0.5SE = 0.5:

0.5=15nn=30n=9000.5 = \frac{15}{\sqrt{n}} \quad \Rightarrow \quad \sqrt{n} = 30 \quad \Rightarrow \quad n = 900

Four times the data for twice the precision, exactly as the n\sqrt{n} predicts.

Example 6: Does the population size appear anywhere?

The standard error formula involves σ\sigma and nn. Where’s the population size NN?

Solution. It isn’t there, and that answers the puzzle from the very first lesson.

Provided the population is much larger than the sample (the usual guidance is nn under 10% of NN), the precision of your estimate depends only on how many you sampled, not what fraction that represents.

So a sample of 1,000 works as well for 300 million people as for 30,000. A finite population correction factor exists for cases where the sample is a large fraction of the population, but it’s rarely needed in practice.

Polling margins of error come straight from the standard error. A reported “±3 percentage points” is roughly two standard errors for a proportion, which pins the required sample near 1,100. Whenever you see that figure, the arithmetic of this lesson produced it.

Quality control charts plot sample means rather than individual measurements precisely because the CLT makes those means predictable and normal. Control limits at ±3SE\pm 3 SE are meaningful even when individual parts aren’t normally distributed.

Clinical trials use the CLT to justify normal-based tests on outcomes that aren’t remotely normal individually, like hospital stay lengths.

A/B testing computes standard errors for conversion rates to decide whether an observed difference exceeds what sampling noise would produce. The n\sqrt{n} relationship is why detecting small effects requires so much traffic: halving the detectable effect size needs roughly four times the users.

Election forecasting aggregates many polls, which reduces standard error further, though only if the polls’ errors are independent. Correlated polling bias, where everyone misses in the same direction, defeats the averaging, and that’s what happened in several recent high-profile forecasting misses.

Bootstrapping, a modern computational technique, estimates sampling distributions by resampling the data itself, which lets analysts get standard errors for statistics with no tidy formula.

What does the Central Limit Theorem say about the sampling distribution of the sample mean?
A population has sigma = 24. For samples of size 36, what is the standard error of the mean?
How much must you increase the sample size to cut the standard error in half?
What is the difference between the population standard deviation and the standard error?
Why does the standard error formula not include the population size N?