Central Limit Theorem
Revise Central Limit Theorem for Further Mathematics — revision notes and instant AI marking. Free to start.
The Central Limit Theorem
If you take a big enough sample from literally any population and average it, that average behaves like a normal distribution — even if the original population doesn't look normal at all.
Quick Summary
- A random sample is a set of independent, identically distributed copies of a population variable X.
- The sample mean,
X̄, is not a fixed number — it changes depending on which sample you happen to draw. - If the population itself is normal, then
X̄ ~ N(μ, σ²/n)exactly, for any sample size n. - The Central Limit Theorem (CLT) says that for any population distribution, as long as n is large,
X̄is approximatelyN(μ, σ²/n). - You always need to find
μ = E(X)andσ² = Var(X)of the population first, then divide the variance by n. - Bigger samples → sample means cluster tighter around μ → smaller spread.
1. Samples and the Sample Mean
1.1 What is a "random sample" of a random variable?
Imagine you flip a fair coin 10 times and count the heads. That's one trial of X ~ B(10, 1/2), and here E(X) = np = 5, Var(X) = np(1-p) = 2.5.
Now suppose you repeat this whole experiment (10 flips → count heads) once a day, for 7 days. Each day gives you a new random variable:
X₁ ~ B(10, ½) X₂ ~ B(10, ½) … X₇ ~ B(10, ½)
X here is called the population distribution, with population mean μ and population variance σ². The collection X₁, X₂, ..., Xₙ is called a random sample of size n — each Xᵢ is an independent copy of X.
1.2 The sample mean, X̄
Crucial idea: X̄ is not a fixed number. Every time you draw a fresh sample of size n, you get a slightly different X̄. Do this 7-day coin experiment once and you might get a sample like 4, 6, 5, 5, 3, 5, 6 → mean 4.857. Do it again next week and you'll get a different set of 7 numbers, and a different mean. If you did this hundreds of times, all those different sample means would themselves form a distribution — and that distribution is what the rest of this chapter is about.
1.3 The distribution of X̄ when the population IS normal
If your random sample X₁, X₂, ..., Xₙ comes from a normal population, X ~ N(μ, σ²), then the sample mean has an exact distribution too:
- Mean of X̄ = population mean μ (no shift — averaging doesn't change where it's centred).
- Variance of X̄ = population variance ÷ n (bigger samples shrink the spread).
- Larger n → σ²/n gets smaller → X̄ clusters tighter around μ → your sample mean becomes a more reliable estimate of the true mean.
A population is known to follow X ~ N(40, 36). A random sample of size 9 is taken. State the exact distribution of the sample mean X̄, and calculate P(X̄ > 42).
Explain, in your own words, why X̄ is described as a "random variable" rather than a single fixed value.
2. The Central Limit Theorem (CLT)
2.1 What does the CLT actually say?
Section 1.3 only worked because we assumed the population was already normal. But real-world populations are often not normal — number of heads in coin flips (binomial), number of customers arriving per hour (Poisson), number of attempts until success (geometric), or something with a completely irregular shape. The Central Limit Theorem is the result that rescues us in every one of these cases.
| Case | Distribution of X̄ | Exact or approximate? |
|---|---|---|
| Population X is normal | N(μ, σ²/n) | Exact, for any n |
| Population X is anything else (binomial, Poisson, geometric, uniform...) | N(μ, σ²/n) | Approximate, only valid when n is large |
2.2 Worked mini-example: Poisson population
Suppose X₁ to X₅₀ is a random sample of size 50 taken from a Po(λ) distribution. We know that for a Poisson distribution, μ = λ and σ² = λ.
Since n = 50 counts as "large," the CLT tells us:
2.3 Finding μ and σ² from the population
Before you can apply the CLT, you must find the population mean μ and population variance σ² of whatever distribution X follows. There are two routes:
Route A — X is a discrete random variable given as a table:
Route B — X follows a standard named distribution: use the known formulae. For example:
| Distribution | μ = E(X) | σ² = Var(X) |
|---|---|---|
| B(n, p) | np | np(1−p) |
| Po(λ) | λ | λ |
| Geo(p) | 1/p | (1−p)/p² |
2.4 Full worked example (exactly how exam questions are phrased)
Let X represent the value shown when a four-sided spinner is spun:
| x | 0 | 2 | 4 | 8 |
|---|---|---|---|---|
| P(X = x) | 0.5 | 0.2 | 0.1 | 0.2 |
The spinner is spun 60 times, and the values are recorded. Estimate the probability that the mean of the values recorded is less than 2.8.
Step 1 — Recognise it's a CLT question. We're asked about the probability of a mean, and we have a large sample (n = 60). That combination is the signal: use X̄ ≈ N(μ, σ²/n).
Step 2 — Find μ = E(X):
μ = 0(0.5) + 2(0.2) + 4(0.1) + 8(0.2) = 0 + 0.4 + 0.4 + 1.6 = 2.4
Step 3 — Find σ² = Var(X):
E(X²) = 0²(0.5) + 2²(0.2) + 4²(0.1) + 8²(0.2) = 0 + 0.8 + 1.6 + 12.8 = 15.2
σ² = E(X²) − [E(X)]² = 15.2 − 2.4² = 15.2 − 5.76 = 9.44
Step 4 — Apply the CLT with n = 60:
X̄ ≈ N( 2.4, 9.44/60 ) = N( 2.4, 0.1573... )
Step 5 — Standardise and use normal tables / calculator:
P(X̄ < 2.8) = 0.8433... ≈ 0.843 (3 s.f.)
A random variable X has population mean μ = 15 and population variance σ² = 40. A random sample of size 80 is taken. Use the CLT to state the approximate distribution of X̄, and find its standard deviation.
X ~ Geo(0.25). A random sample of size 100 is taken. Find μ, σ², and use the CLT to write down the approximate distribution of X̄.
2.5 How do I know it's a CLT question?
Exam questions rarely say "use the Central Limit Theorem" outright. Instead, look for these giveaway phrases:
- "Estimate the probability that the mean number of... is greater than / less than / between..."
- "A random sample X₁, ..., X₅₀ is taken..." — especially with a fairly large subscript like 30, 50, 60, 100.
- The population is described using a non-normal distribution (binomial, Poisson, geometric, or "the following probability distribution" as a table) — that's your cue that this must be an approximation via CLT rather than an exact normal result.
What to Memorise
Concepts Checklist
Exam Tips & Common Mistakes
- Exam Tips & Common Mistakes
Read the full Central Limit Theorem notes free
That's the preview — create a free account to read the rest, plus flashcards and practice questions with instant AI marking. No credit card.
Unlock the full notes free →