Kolmogorov's Axioms of Probability
The three rules that turn "probability" from a vague feeling into a number you can compute with — and the reason every probability calculation you'll ever do is secretly built on set theory.
Prerequisites: Set Theory Basics
Before 1933, "probability" meant different things to different mathematicians — a long-run frequency to some, a degree of belief to others — and there was no single set of rules everyone agreed a valid probability had to obey. Andrey Kolmogorov fixed this with three simple rules. Everything else in probability theory — Bayes' rule, expectation, the central limit theorem — is a consequence of just these three, so it is worth seeing exactly what they say and why nothing less would do.
The analogy: rules for a fair coin jar
Imagine a jar holding tickets for every possible outcome of some experiment — every card in the filing cabinet from set theory. You want to assign each pile of tickets (each event) a "size" that behaves the way sizes should: nothing is negatively sized, the whole jar has a fixed total size, and if you split the jar into non-overlapping piles, their sizes must add up to the size of the piles combined. Kolmogorov's axioms say exactly this, with "size" renamed "probability."
Writing it down
Fix a sample space (every possible outcome) and consider events (sub-piles of outcomes, in the language of sets). A function assigning a number to every event is a valid probability measure if it satisfies three axioms.
Axiom 1 — non-negativity. for every event . In words: no probability is ever negative; the smallest a pile can be sized is zero.
Axiom 2 — normalisation. . In words: something in the sample space is guaranteed to happen, so the whole jar has total size exactly one.
Axiom 3 — countable additivity. For any sequence of pairwise disjoint events (no two overlap),
In words: if you split an event into non-overlapping pieces — even infinitely many of them — the probability of the whole thing is the sum of the probabilities of the pieces, and no more. This is the direct probabilistic cousin of the set-theory fact that disjoint piles don't need an overlap correction.
Everything familiar follows from just these three. For instance falls straight out: and are disjoint and together make up , so by Axiom 3 their probabilities sum to by Axiom 2.
Worked example 1: a loaded six-sided die
Suppose a die is weighted so that each, each, and . Check the axioms directly: each value is (Axiom 1, satisfied). Sum them: (Axiom 2, satisfied, since these six outcomes are disjoint and exhaust ). Now compute using Axiom 3: the events "roll 2," "roll 4," "roll 6" are pairwise disjoint, so . You never needed anything beyond the three axioms to get that number.
Worked example 2: proving the union bound from the axioms
Claim: for any two events, . Split into two disjoint pieces: itself, and " but not ," written . These are disjoint by construction, and together they make up , so Axiom 3 gives . Now, is a sub-pile of , and a sub-pile can never have more probability than the pile containing it (this itself follows from Axiom 1 applied to ), so . Substituting: . The whole inequality — used constantly to bound the chance that at least one of many bad things happens — is a two-line consequence of the axioms, not a separate assumption.
What this means in practice
Every probability model a quant builds — a distribution of returns, a default probability, a Bayesian posterior — is required to satisfy these three axioms or it is not a valid probability model at all, regardless of how it was derived. Risk aggregation, VaR bounds, and union-bound arguments in machine learning generalisation theory all trace back to Axiom 3.
A probability assignment is valid only if it is non-negative (Axiom 1), assigns 1 to the whole sample space (Axiom 2), and adds up correctly over disjoint pieces, even infinitely many (Axiom 3). Every other probability rule — complements, unions, conditional probability — is derived from just these three.
Axiom 3 requires the events to be disjoint — if and overlap, ; you must subtract the overlap, , exactly as in the set-theory inclusion-exclusion formula. Applying plain addition to overlapping events is the single most common probability error, and it silently overstates the true probability by double-counting the shared outcomes.
Related concepts
Practice in interviews
Further reading
- Kolmogorov, Foundations of the Theory of Probability (1933)
- Billingsley, Probability and Measure (ch. 1)