1.3.14 · D1Probability & Statistics

Foundations — Law of large numbers

2,163 words10 min readBack to topic

Before we can even read the parent note's formulas, we must earn every piece of notation. We'll go in order: from a single random draw, to a list of draws, to their average, to the two Greek letters that describe where that average is heading and how wildly it wobbles. Each new symbol gets a plain meaning, a picture, and a reason the topic can't live without it.


1. A random variable — the symbol

Plain words: flip a coin — the outcome is "heads" or "tails," which are words, not numbers. A random variable is the translator that says "heads , tails ." Now every flip produces a number we can average.

The picture: think of a machine with a slot. You feed in a random event (a coin toss), and a number pops out the bottom.

Figure — Law of large numbers

Why the topic needs it: the Law of Large Numbers is entirely about averaging numbers. You cannot average the word "heads." is the bridge from "stuff happening" to "arithmetic we can do."

Recall

What does a capital stand for here? ::: A random variable — a rule assigning a number to each random outcome.


2. Many draws — subscripts

Plain words: the subscript is just a name tag. is not " times 5" — it is "the fifth draw." The is a placeholder that can be any tag from up to .

The picture: a row of buckets, each holding one draw's number, labelled left to right.

Figure — Law of large numbers

Why the topic needs it: the whole story is "what happens as grows." We need a way to talk about draw number , draw number , and everything between — subscripts give us that vocabulary.


3. The summation sign —

Plain words: it is a compact way to write a long "" chain without knowing exactly how many terms there are.

Why this tool and not just ""? Because can be huge or unknown. We literally cannot write out a million plus-signs, and we want a formula that works for any . Sigma is the tool that says "add all of them" in one clean symbol.

Recall

In , what do the bottom "1" and top "" tell you? ::: Where to start counting (draw 1) and where to stop (draw ).


4. The sample mean —

Plain words: it is the ordinary "add-em-up-and-divide" average you already know, just written with our new symbols. Total heads divided by total flips = proportion of heads.

The picture: pile all the bucket-numbers onto one seesaw. The balance point of that seesaw is .

Figure — Law of large numbers

Why the topic needs it: is the star of the entire show. The Law of Large Numbers is a statement about what this one quantity does as climbs. Everything else exists to describe where goes.


5. Expected value — the symbol

Plain words: for a fair coin, half the flips are heads () and half tails (), so the forever-average is . That is . Note the difference from : the sample mean is what you actually measured from real flips (it wobbles); is the ideal target it wobbles around (it never moves).

The picture: on the number line, is a fixed flag stuck in the ground. is a dot that dances near the flag and, as grows, dances closer and closer.

Figure — Law of large numbers

Why the topic needs it: the Law of Large Numbers is precisely " heads toward ." Without a symbol for the target, we have nothing to converge to. See Expected Value for the full construction of .

Recall

Which one moves as you collect data, or ? ::: moves (it's measured); is a fixed target.


6. Variance and — how wide the wobble is

Plain words: two experiments can share the same target yet feel totally different — one calm, one chaotic. is the number that captures that chaos. It's the average of the squared distances from the mean (squaring makes every distance positive and punishes big misses harder).

Why the topic needs it: the parent's key formula is . That single fact — the wobble of the average shrinks as grows — is the engine of the whole proof. You cannot understand "why more data helps" without . Full treatment in Variance and Standard Deviation.

Recall

What does a small tell you about the draws? ::: They cluster tightly around the mean .


7. Probability of an event —

The parent writes things like . Read it inside-out:

  • = how far your measured average sits from the true target.
  • = absolute value: strip the sign, keep only the distance (missing by and are equally "off").
  • = "that distance is at least " (a small threshold — the Greek letter epsilon, meaning "a tiny amount you pick").
  • = the chance that all of the above is true.

So the whole expression means: "the probability that the sample mean misses the target by more than a whisker ." The Law says this probability crashes to as grows.

Figure — Law of large numbers
Recall

Why the absolute-value bars in ? ::: We care about distance from the target, not direction — over and under both count as "off."


8. The limit —

Plain words: the fraction gets smaller every time grows. Plug in , then , then : the value marches toward but never is a fixed stopping point — it just heads there. The limit is the destination of that march.

Why the topic needs it: "more and more repetitions" is . The Law of Large Numbers is a statement about a limit, so this symbol is unavoidable.


9. i.i.d. — the fine print on the draws

Why the topic needs it: independence is exactly what lets variances add in Step 3 of the parent's proof ( of a sum = sum of s). "Identical" is what lets us write one shared and for all draws. Break either and the proof collapses. Deep dive: Independent and Identically Distributed.


How these feed the theorem

Random variable X

Indexed draws X_1 ... X_n

Summation sign sum

Sample mean X-bar_n

Expected value mu

Distance X-bar minus mu

Variance sigma squared

Var of sample mean shrinks

iid assumption

Probability P of missing

Limit as n to infinity

Law of Large Numbers

Read top to bottom: numbers () become a list, the list becomes an average (), we measure its distance from the target (), variance tells us the wobble shrinks, and the limit turns "shrinks" into "vanishes" — which is exactly the Law of Large Numbers.


Where these tools reappear

Once you own these symbols, they unlock the neighbours: Chebyshev Inequality uses , , and to bound the miss-probability; the Central Limit Theorem refines " near " into an exact bell shape; Monte Carlo Methods and Bootstrap Sampling turn the averaging idea into estimation algorithms; and Stochastic Gradient Descent leans on the same "mini-batch average true average" logic.


Equipment checklist

Test yourself — cover the right side and answer before revealing.

  • A capital means... ::: a random variable: a rule turning a random outcome into a number.
  • The subscript in means... ::: which draw (a name tag), not multiplication.
  • expands to... ::: , the sum of all draws.
  • is computed by... ::: adding all draws and dividing by — the sample average.
  • is... ::: the fixed long-run (forever) average, the target that chases.
  • The difference between and is... ::: is the fixed ideal; is the wobbling measured value.
  • measures... ::: variance — how widely the draws spread around .
  • describes... ::: the average missing the target by at least a small threshold .
  • is a number in the range... ::: (impossible) to (certain).
  • asks... ::: what value the expression approaches as grows without bound.
  • "i.i.d." requires... ::: draws that are independent and share the same distribution (, ).