Motivation
The Laws of Large Numbers say Xˉn converges to μ. But how fast, and what is the distribution of Xˉn for large n?
The CLT answers: it’s approximately normal.
Statement
Let X1,X2,… be i.i.d. with mean μ and variance σ2 (0<σ2<∞). Define:
Xˉn=n1∑i=1nXi
Central Limit Theorem:
σ/nXˉn−μdN(0,1)
Equivalently:
n(Xˉn−μ)dN(0,σ2)
Or:
∑i=1nXi≈N(nμ,nσ2)
for large n.
Interpretation
- The sample mean Xˉn is approximately normal
- Mean: μ
- Variance: σ2/n (decreases with n)
- Standard error: σ/n
The ”n rate”: standard deviation shrinks as 1/n.
Normal Approximation
For large n:
P(a≤σ/nXˉn−μ≤b)≈Φ(b)−Φ(a)
This works regardless of the original distribution of Xi.
Conditions
- Independence: Xi are independent
- Identical distribution: Xi have the same distribution
- Finite variance: σ2<∞
The CLT works for most common distributions.
Example: Coin Flips
Flip fair coin n=100 times. Xi∈{0,1} with μ=0.5, σ2=0.25.
Total heads: S100=∑i=1100Xi.
By CLT: S100≈N(50,25), so:
P(S100≥60)=P(5S100−50≥560−50)≈P(Z≥2)=0.0228
Exact (binomial): P(S100≥60)=∑k=60100(k100)0.5100≈0.028.
CLT approximation is close.
Continuity Correction
When approximating discrete distributions, add 0.5:
P(Sn≥k)≈P(Z≥σnk−0.5−nμ)
Using continuity correction in coin example:
P(S100≥60)≈P(Z≥559.5−50)=P(Z≥1.9)=0.0287
Better approximation: 0.0287 vs exact 0.028.
Visualisation
As n increases, the distribution of Xˉn becomes more bell-shaped and narrower.

Why Does It Work?
Each Xi contributes a “small random perturbation”. The sum of many small independent random effects tends toward normality.
This explains why many natural phenomena are normally distributed: they result from many small factors additive up.
Application: Confidence Intervals
Approximate 95% confidence interval for μ:
Xˉn±1.96nσ
where σ is known, or replaced by sample standard deviation s for large n.
Rate of Convergence
CLT gives the rate: O(1/n). The error in the CLT approximation is typically O(1/n), quantified by the Berry-Esseen theorem.
Example: Load Times
A website has average page load time μ=2 seconds, SD σ=0.5 seconds. For n=25 users:
Xˉ25≈N(2,0.52/25)=N(2,0.01)
P(Xˉ25>2.2)=P(Z>0.12.2−2)=P(Z>2)≈0.0228
Summary
| Aspect | Statement |
|---|
| Conclusion | n(Xˉn−μ)dN(0,σ2) |
| Rate | O(1/n) |
| Approximation | Xˉn≈N(μ,σ2/n) |
| Conditions | i.i.d., finite σ2 |