4.9.16 · D2Probability Theory & Statistics

Visual walkthrough — Law of Large Numbers — weak and strong

1,981 words9 min readBack to topic

Before we start, three words in plain language (each gets a picture later, but let's name them now):


Step 1 — A random variable is mass sitting on a number line

WHAT. Picture the possible outputs of the machine laid out on a horizontal number line. Over each output value we stack a bar whose height is the probability of that value. The total height of all bars is — the machine always outputs something.

WHY. Every inequality we build is really a statement about how much probability mass sits far from the centre. To reason about "far from the centre" we first need to see mass as a physical thing sitting at positions. This picture turns abstract probability into a stack of weights.

PICTURE. In the figure, the black bars are the probability weights. The red dot marks — literally the balance point where the number line would tip level if the bars were real weights.

Figure — Law of Large Numbers — weak and strong

Each term is "position times weight" — exactly the recipe for a centre of mass. That is why is the balance point and not just an abstract symbol.


Step 2 — Markov's inequality: mass far out costs you mean

WHAT. Take a machine that only outputs values (call its output ). Pick a threshold . We claim the probability of landing at or past can't be large if the average is small:

WHY. This is the root tool — see Markov's Inequality. It's the only way we know to convert "the average is small" into "not much mass is far out." We need exactly that conversion, because the Weak Law is about mass being far from .

PICTURE. Look at the figure. The full black curve is the weight we're summing to get (this is the "position times weight" from Step 1, now for a continuous machine, using a smooth density ). We do two shrinking moves, each shaded:

Figure — Law of Large Numbers — weak and strong

  • First : we deleted the red-shaded left chunk . Since everything there was , so removing it can only lower the total. What it looks like: chop off the left, the pile gets no taller.
  • Second : on the right chunk every is at least , so replacing each by the smaller constant again lowers the total. What it looks like: flatten the right hump down to a rectangle of height .
  • The final rectangle's area is times its total probability .

Divide both sides by and you have Markov. The integral here is just "add up infinitely many thin weights" — the continuous version of the sum in Step 1. That's why the integral appears and not something fancier.


Step 3 — Chebyshev: turn Markov into a two-sided ruler around

WHAT. Markov only talks about non-negative . But we care about landing far from on either side. Trick: feed Markov the machine , which is always , and choose the threshold .

WHY. Squaring does two jobs at once: it makes the quantity non-negative (so Markov applies) and it treats "too far left" and "too far right" identically, because ignores sign. That is exactly the two-sided statement we want. See Chebyshev's Inequality.

PICTURE. The figure shows the parabola . The two vertical red lines at and are where . Being outside the red band on the number line is the same event as the parabola rising above the height .

Figure — Law of Large Numbers — weak and strong

Now apply Markov to with :

  • is by definition the variance from Step 0 — the average squared spread.
  • is our chosen tolerance ("how far is too far").
  • Reading: wide spread more mass allowed outside the band; big tolerance less.

Step 4 — The averaging machine and why its spread shrinks

WHAT. Now build the sample mean machine. Press the button times, get , and output their average We compute its mean and — the crucial part — its variance.

WHY. Chebyshev (Step 3) needs the variance of whatever machine we point it at. If we can show has a tiny variance, Chebyshev will immediately force its mass to hug . So this step is where the shrinking actually happens.

PICTURE. The figure stacks the spread of a single (wide black bell) against the spread of for growing (progressively narrower curves, the narrowest drawn in red). Same centre , but the averaging machine's spread collapses inward.

Figure — Law of Large Numbers — weak and strong

Mean (uses linearity — average of averages is the average): The centre never moves. Good — the machine is aimed correctly.

Variance (uses independence — this is where "i.i.d." earns its keep):

  • Pulling out of a variance squares it to (variance scales with the square of a multiplier).
  • Because the are independent, the variance of the sum is just the sum of the variances — no covariance cross-terms survive. That is the single place independence is used.
  • Result: . This is the whole engine. Every extra draw divides the spread again.

Step 5 — Assemble the Weak Law

WHAT. Point Chebyshev (Step 3) at the averaging machine (Step 4), whose mean is and variance is .

WHY. All the parts now click: Chebyshev gives a bound in terms of variance, and Step 4 made that variance small. Substituting is the finish line.

PICTURE. The figure shows the bound as a black curve falling toward as grows, with the shaded "probability of being off by more than " (red) squeezed underneath it — trapped, forced to zero.

Figure — Law of Large Numbers — weak and strong

  • Numerator : fixed spread of one draw.
  • Denominator : grows without bound as (for any fixed tolerance ).
  • A fixed number over an exploding number .

Step 6 — The degenerate & edge cases (never leave a gap)

WHAT / WHY / PICTURE for each corner the reader could hit:


The one-picture summary

WHAT. One figure that chains the whole argument: a single draw's wide spread → the parabola trick that turns "far from " into "square exceeds " → the variance collapse → the bound crushing the tail probability to zero.

Figure — Law of Large Numbers — weak and strong

Markov

plug Y = X minus mu squared

aim at sample mean

shrinks like 1 over n

Y >= 0 and threshold a

P Y>=a <= EY over a

Chebyshev: P far <= sigma2 over eps2

Var of mean = sigma2 over n

Weak Law: bound to zero

Recall Feynman retelling — the whole walkthrough in plain words

Picture probability as little weights sitting on a number line; the mean is the point where they'd balance. Markov's idea: if the average position is small, you can't have much weight parked way out far — you'd tip the balance. To use that on both sides of , we square the distance (squaring forgets the sign and can't go negative), feed it to Markov, and out pops Chebyshev: the chance of being more than from is at most . Now the magic move: instead of one draw, average independent draws. Averaging keeps the balance point at but — because the independent wiggles cancel — squeezes the spread down to . Feed that shrunken spread back into Chebyshev and the bound becomes , which slides to zero as grows. So the average is probably close to , and the more you average the surer you are. The only things that can break this: no balance point exists (Cauchy — no mean), or the draws secretly lean on each other (dependence stops the wiggles from cancelling).

Recall One-line challenge before you leave

Why does averaging shrink the spread but not move the centre? ::: Linearity keeps (centre fixed); independence makes variances add, and the from pulling out beats the terms, leaving (spread shrinks).