Modes of Convergence for Random Variables
Four different meanings of "the estimator settles down" — almost sure, in probability, in mean square, and in distribution. They are not interchangeable, they sit in a strict hierarchy, and picking the wrong one is how proofs and simulations quietly go wrong.
Prerequisites: The Law of Large Numbers, The Central Limit Theorem
Every result you rely on has a limit hiding in it. The law of large numbers says a sample mean settles on the truth. The central limit theorem says a standardised sum settles on a bell curve. Your Monte Carlo pricer says more paths give a better answer. All three say "settles", and none of them mean the same thing by it — so feeding one theorem's notion of settling into another's is a mistake that is hard to see and easy to ship.
Four ways a class can improve
Picture a large class taking a spelling test every week, forever. In week , student scores an error count . Ask in four ways whether the class is "getting to zero errors".
- Every student personally gets there and stays. Follow one student down the years: at some point they stop making mistakes and never make another. This is almost sure convergence — about individual life stories.
- At any given moment, hardly anyone is failing. In week 1000 the fraction with errors is tiny, but no individual is promised anything: a given student might relapse, briefly, forever. This is convergence in probability — about snapshots.
- The average squared error shrinks. Square everyone's error count and average over the class; that number goes to zero. This is convergence in mean square (), unforgiving of rare disasters: one student scoring a million ruins the average even if everyone else is perfect.
- The shape of the results settles. The weekly histogram stops changing, even though which student holds which score keeps shuffling. This is convergence in distribution — about the pattern, not anybody in it.
Everything below is those four sentences in symbols.
The definitions
Throughout, is a sequence of random variables, is the target, is one scenario (one student), is the step number, and (epsilon) is any tolerance you name, however small.
Almost surely ( a.s.):
The set of scenarios in which the sequence genuinely converges has probability one. The limit is taken inside, scenario by scenario.
In probability (): for every ,
However tight a tolerance you name, the chance of being outside it at step shrinks to zero. The limit is now outside, on the probability.
In mean square ():
The average squared miss shrinks to zero. This is the one that mean-squared-error and variance arguments use.
In distribution (): writing for the cumulative distribution function of and for that of ,
The probability of landing below any level settles down. Note the variables need not live on the same probability space at all — only their laws are compared.
How they rank
Convergence in distribution is the weakest of the four: implied by all the others, implying none. It is what the central limit theorem delivers. The strong law of large numbers delivers almost sure convergence and the weak law delivers only convergence in probability — that is the entire difference between the two versions.
Worked example 1: in probability but never almost surely
Let be drawn uniformly from — think of it as picking one student at random. Sweep a block across the interval in rounds, setting inside the current block and 0 outside:
- Round 1: on all of .
- Round 2: on ; on .
- Round 3: on ; on ; on .
- Round : blocks of width , together covering the whole interval.
Does it converge in probability to 0? Take any tolerance, say . Then , the width of the current block. Rounds finish at steps 1, 3, 6, 10, 15, 21, 28, 36, 45, 55, 66, 78, 91, 105, so sits in round 14 with width , and sits in round 45 with width . These go to zero, so yes: .
Does it converge almost surely to 0? Fix a scenario, say . Round 1's block covers everything, so . Round 2's block contains , so . Round 3's block contains , so . Every round covers the whole interval, so every is hit exactly once per round, forever: the sequence reads and never settles. The probability of convergence is , not . No almost sure convergence.
In one line: in probability means the failures get rare; almost surely means the failures stop. Rare is not finished.
The friendly direction: a running average of independent draws does settle permanently, for essentially every path. Add samples in the explorer below and watch the running mean stop wandering, while the shaded envelope shows the rate at which the "in probability" statement tightens.
Worked example 2: almost surely but not in mean square
Now the other gap. Define to be the number with probability , and otherwise. Work out the two quantities directly:
| 10 | 0.01 | 0.100 | 1 |
| 100 | 0.0001 | 0.010 | 1 |
| 1000 | 0.000001 | 0.001 | 1 |
Almost sure? Add up the chances of a non-zero value: , a finite total. The first Borel-Cantelli lemma says that when those probabilities sum to something finite, only finitely many of the events happen — so in almost every scenario is eventually zero forever. Yes, almost surely.
In mean square? Read the last column: for every single . It never shrinks. No.
The middle column shows , so the sequence does converge in while failing in . The culprit is the squaring: a miss of size arriving with probability is negligible on average, but squaring turns into and exactly cancels the shrinking probability. Rare-but-huge outcomes are invisible to the mean and fatal to the mean square — the same reason a strategy with a fine average return can still break a variance-based risk model.
Worked example 3: distribution convergence proves nothing about closeness
Let be a standard normal and set for every . The standard normal is symmetric, so is also standard normal: every has exactly 's distribution and trivially.
But the gap does not depend on at all. Pick :
That probability sits at forever, so converges in distribution to while being, with better-than-even odds, more than a unit away from it. Convergence in distribution compares laws, not values.
Almost sure and mean square are the strong modes; each implies in probability, which implies in distribution. Nothing runs backwards, and the two strong modes do not imply each other. When someone says an estimator "converges", ask in which mode — the answer decides which theorems you may use next.
What this means in practice
- Which law of large numbers you have. The strong law gives almost sure convergence, so a single long simulation run is guaranteed to settle. The weak law gives only convergence in probability: a long run is probably close, not that a particular run stops wandering. For Monte Carlo you want the strong version, and independent draws with a finite mean give it.
- Consistency versus asymptotic normality. "Consistent" is convergence in probability to the true parameter; "asymptotically normal" is convergence in distribution of the rescaled error. Different claims, different uses.
- Combining limits. Convergence in distribution does not survive addition or multiplication on its own — you need Slutsky's theorem or the continuous mapping theorem.
- Swapping limits and expectations. Convergence in probability does not give ; worked example 2 is the counterexample. That step needs dominated convergence or uniform integrability.
- Fat tails. Mean square convergence needs finite second moments. Where the variance is questionable, arguments and the standard errors built on them are unavailable, however clean the code looks.
The most expensive mistake is treating convergence in distribution as though it said the random variables are getting close. It does not. and together tell you nothing about : the joint behaviour is unconstrained. Bootstrap intervals, delta-method standard errors and CLT-based statistics all rest on distribution convergence, so any step that assumes the variables themselves are nearby needs Slutsky's theorem to justify it. The second slip: "with probability approaching 1" is not "eventually always" — worked example 1 fails infinitely often in every scenario while satisfying the first phrase perfectly.
Diagnose the mode by asking where the limit sign sits. Inside the probability, applied to one scenario's path? Almost sure. Outside, applied to a probability? In probability. Applied to an expectation of a squared error? Mean square. Applied to a cumulative distribution function? In distribution.
Related concepts
Practice in interviews
Further reading
- Williams, Probability with Martingales (ch. 7, 13)
- van der Vaart, Asymptotic Statistics (ch. 2)