Roll one six-sided die and the outcome tells you almost nothing. Roll it ten thousand times and the running average settles near 3.5, which is the expected value . The law of large numbers is the theorem that licenses this, and it is what makes every simulation, every A/B test, and every Monte Carlo estimator work.
The idea
The law of large numbers is a statement about where the sample mean goes, and it comes in two strengths that differ only in the mode of convergence. The weak law says that for a fixed large , the average is probably close to ; the strong law says the sequence of averages converges to with probability 1. The gap between those is real: the weak law leaves open that happens infinitely often at infrequent intervals, and there are distributions where exactly that occurs.
Setup
Take an infinite sequence of i.i.d. Lebesgue integrable random variables with . Both laws concern the sample average
Introductory texts usually add finite variance and no correlation, which gives and shortens the proof considerably. That assumption is not necessary. Large or infinite variance slows convergence, but the law still holds. Mutual independence can also be weakened to pairwise independence or to exchangeability in both versions.
Weak law
The weak law (Khinchin’s law) says the sample mean converges in probability to : for any positive ,
Read it as a promise about margins. Name any nonzero margin, however small, and a sufficiently large sample makes it very likely the observed average sits inside that margin. Chebyshev proved a version as early as 1867 for series with bounded but non-identical variances, and his proof works so long as the variance of the average of the first values goes to zero. Khinchin showed in 1929 that for i.i.d. variables it suffices that the expected value exists.
Strong law
The strong law (Kolmogorov’s law) says the sample average converges almost surely:
The probability that the whole sequence of averages converges to equals one. Kolmogorov proved this for i.i.d. variables with an expected value in 1930, and showed in 1933 that for the average to converge almost surely on anything, the variables must have an expected value. The modern proof is more complex than the weak law’s and relies on passing to an appropriate subsequence. Viewed from higher ground, the strong law is a special case of the pointwise ergodic theorem, which is what justifies reading the expected value as a long-term average at all.
Why “weak” and “strong”
Almost-sure convergence implies convergence in probability, so the strong law implies the weak law. The names encode that implication rather than any difference in the conclusion’s target.
The direction that matters is the converse failing. The weak law holds under conditions where the strong law does not. One constructed case: let be with probability each, so . Kolmogorov’s criterion fails because the relevant partial sum is asymptotic to , which is unbounded. The distribution of the average narrows toward zero width (standard deviation asymptotic to ), but for a given the probability that the average returns above after the th trial does not go to zero. Other examples come from random variables whose expected value exists only as a conditionally convergent integral or series, such as for exponential with parameter 1, where the Dirichlet-integral reading gives .
When it fails outright
The average may fail to converge at all. Averages of draws from the Cauchy distribution or from a Pareto distribution with do not converge as grows, and the reason is heavy tails. The two cases fail differently: the Cauchy distribution has no expectation, while the Pareto () expectation is infinite.
The Cauchy case is easy to generate. Let each random number be the tangent of an angle uniform on . The median is zero, the expected value does not exist, and the average of such variables has the same distribution as one of them, so it never concentrates anywhere.
Warning
The law says nothing about small samples and offers no self-correction mechanism. There is no principle that a few observations will match the expected value, and no principle that a streak of one value gets balanced by the others. That belief is the gambler’s fallacy. Selection bias is also immune: if the trials embed a selection bias, increasing the number of trials leaves the bias exactly where it was.
Even in the well-behaved fair-coin case, the convergence is subtler than it sounds. The proportion of heads converges to 1/2 almost surely, while the absolute difference between head and tail counts almost surely grows large. The expected difference grows, just more slowly than the number of flips, so the ratio of that difference to still goes to zero.
Against the central limit theorem
The two theorems answer different questions about the same quantity. The law of large numbers says ; it names the limit. The central limit theorem says the distribution of a normalized version of the sample mean converges to a standard normal, so that the limiting distribution of is normal with mean 0 and variance . It names the shape of the fluctuation around that limit, and it requires finite positive variance, which the law of large numbers does not.
One is a statement of consistency, the other a statement of the error’s scale and shape. You need the first to know that estimating works and the second to attach a confidence interval to the estimate.
Example
Monte Carlo integration is the law of large numbers used directly as an algorithm. To integrate on : draw i.i.d. uniform on , set , and compute . By the strong law this converges to . For on , which is hard by traditional methods, the algorithm gives at .
History
Gerolamo Cardano (1501 to 1576) stated without proof that the accuracy of empirical statistics improves with the number of trials. Jacob Bernoulli proved a special form for a binary random variable, taking over 20 years to reach a sufficiently rigorous proof, published in Ars Conjectandi in 1713. He called it his “golden theorem”; it became known as Bernoulli’s theorem. Poisson named it la loi des grands nombres in 1837, and the French name stuck. Chebyshev, Markov, Borel, Cantelli, Kolmogorov, and Khinchin refined it afterward, and their work produced the weak/strong split.
Related Notes
- Expected Value - the quantity the sample mean converges to
- Central Limit Theorem - describes the fluctuation around that limit rather than the limit itself
- Random Variable - the i.i.d. sequence the law is stated over
- Sampling and Sampling Distributions - the sampling distribution of is what collapses to a point
- Variance and Covariance - is the shortcut proof
- Bootstrap and Resampling - resampling estimators rely on the same convergence
Sources
- Law of large numbers (Wikipedia) - weak and strong statements and their modes of convergence, the Chebyshev/Khinchin/Kolmogorov results and dates, the counterexample where only the weak law holds, the Cauchy and Pareto failure cases, the coin-flip absolute-difference subtlety, the Monte Carlo algorithm and worked integral, and the Cardano-to-Poisson history.
- Central limit theorem (Wikipedia) - the CLT statement about the normalized sample mean and its finite-positive-variance requirement, used for the contrast.