The Laws of Large Numbers
Why sample averages converge to expectations - the weak law via Chebyshev, the strong law almost surely, and the honest limits of both.
Leads to: The LLN justifies Monte Carlo estimation (Phase 13) and the frequentist meaning of probability.
Learning Objectives
Click a status chip to cycle: Not started → In progress → Studied → Practiced → Needs review → Mastered.
- State the weak and strong laws of large numbers and distinguish their modes of convergence.
- Prove the weak law for finite variance using Chebyshev.
- Explain why the strong law is a genuinely stronger, almost-sure statement.
- Apply the LLN to justify Monte Carlo estimators and diagnose when it fails.
Key Vocabulary
- Sample mean
- \(\bar X_n=\tfrac1n\sum_{i=1}^n X_i\); the empirical average of \(n\) draws.
- Convergence in probability
- \(\bar X_n\to\mu\) if \(\Prob(|\bar X_n-\mu|\gt \varepsilon)\to0\) for every \(\varepsilon\gt 0\).
- Almost sure convergence
- \(\Prob(\lim_n \bar X_n=\mu)=1\); the whole random sequence settles, not just its distribution.
- Weak law (WLLN)
- For i.i.d. with finite mean, \(\bar X_n\to\mu\) in probability.
- Strong law (SLLN)
- For i.i.d. with finite mean, \(\bar X_n\to\mu\) almost surely (Kolmogorov).
- i.i.d.
- Independent and identically distributed - the standard sampling assumption.
Intuition & Motivation
Two laws, two modes of convergence
Almost-sure convergence is strictly stronger than convergence in probability: it constrains the entire tail of each realized sequence. The WLLN allows rare, ever-later excursions away from \(\mu\); the SLLN forbids them (except on a null set).
Interactive: watch the sample mean converge
Run repeated sampling and watch \(\bar X_n\) settle toward \(\mu\) while the spread narrows like \(1/\sqrt n\).
Interactive: Monte Carlo estimate of pi
The LLN is the license for Monte Carlo: a sample average of an indicator converges to a probability, here \(\pi/4\).
- Assuming the LLN needs a finite variance - a finite mean suffices; variance only simplifies the proof and gives the rate.
- Confusing convergence in probability with almost-sure convergence; the strong law is genuinely stronger.
- Applying the LLN to Cauchy data: the mean does not exist, so \(\bar X_n\) does not converge at all.
- Believing a larger \(n\) removes bias; the LLN removes variance, not systematic error in the estimator.
- The \(1/\sqrt n\) rule is the single most useful back-of-envelope fact in simulation: quadruple work for double accuracy.
- Before trusting an average, ask whether the underlying mean and variance are finite - fat tails invalidate both laws.
- Variance-reduction methods (antithetics, control variates) keep the \(1/\sqrt n\) rate but shrink the constant \(\sigma\).
Knowledge Check
Practical Exercise
You estimate a probability \(p\) by the fraction of successes in \(n\) i.i.d. Bernoulli(\(p\)) trials, \(\hat p_n\). (a) Give \(\E[\hat p_n]\) and \(\Var(\hat p_n)\). (b) Use Chebyshev to find \(n\) guaranteeing \(\Prob(|\hat p_n-p|\gt 0.01)\le0.05\) in the worst case.
(a) \(\E[\hat p_n]=p\) and \(\Var(\hat p_n)=p(1-p)/n\).
(b) Chebyshev: \(\Prob(|\hat p_n-p|\gt 0.01)\le \dfrac{p(1-p)/n}{0.01^2}\). Worst case \(p(1-p)\le1/4\), so we need \(\dfrac{1/4}{n\cdot10^{-4}}\le0.05\), i.e. \(n\ge \dfrac{1/4}{0.05\times10^{-4}}=50{,}000.\)
So 50,000 trials suffice by the (conservative) Chebyshev guarantee. A CLT-based bound would demand far fewer (~9,600), illustrating how loose Chebyshev is - but it is distribution-free and rigorous.
Lesson Summary
Formula Sheet Additions
- Did I confirm the mean is finite before invoking any LLN?
- Did I state which convergence mode (probability vs almost sure) I mean?
- Did I remember the LLN reduces variance, not bias?
Retrieval Practice
Close the lesson and answer from memory before checking. This is deliberate, effortful recall - the single highest-yield study action.
A: \(\Var(\bar X_n)=\sigma^2/n\); Chebyshev gives \(\Prob(|\bar X_n-\mu|\gt \varepsilon)\le \sigma^2/(n\varepsilon^2)\to0\).
A: Weak = convergence in probability (marginal); strong = almost-sure convergence of the whole sequence. The strong law is stronger.
A: The Cauchy mean does not exist (integral diverges), so there is nothing to converge to; \(\bar X_n\) stays Cauchy.
Flashcards
Click to flip. These feed the site-wide spaced-repetition queue.
Completion Checklist
- I can explain the core ideas in my own words
- I worked the derivations/examples by hand
- I completed the interactive workbench(es)
- I passed the knowledge check
Source References
This lesson synthesizes and paraphrases concepts from the sources below. No copyrighted text, problem sets, or solutions are reproduced. Return to the originals for full depth.
- Probability: Theory and Examples (Rick Durrett, 5th ed.) current - Ch. 2 - Ch. 2: weak and strong laws, Kolmogorov’s SLLN.
- Monte Carlo Methods in Financial Engineering (Paul Glasserman, 2004) foundational - Ch. 1 - Monte Carlo consistency and the \(1/\sqrt n\) error rate.