Concept Probability & Statistics ✓ Live

Probability

Probability is the mathematical framework for reasoning about chance and uncertainty. It assigns numbers between 0 and 1 to events, where 0 means impossible and 1 means certain. Though people had informally reasoned about chance for millennia, the rigorous mathematical theory began with a 17th-century gambling dispute and was fully formalised by Andrey Kolmogorov in 1933.

Putting a number on chance

You know a coin flip has a "50-50" chance of landing heads. You know a die has a "1 in 6" chance of showing any particular number. Probability is the mathematics that makes these intuitions precise and lets us calculate the chances of much more complicated events.

🎲 The scale: Probability is always a number between 0 and 1 (or 0% to 100%). 0 means "impossible." 1 means "certain." A fair coin landing heads has probability 0.5 — exactly halfway.

Born from a gambling dispute

In 1654, a French gambler named Chevalier de Méré asked mathematician Blaise Pascal a question about how to fairly divide the stakes of an interrupted gambling game. Pascal corresponded with Pierre de Fermat (yes, the same Fermat of Fermat's Last Theorem) to work out the answer — and in doing so, they laid the foundations of probability theory.

Basic ideas

  • Event: something that might or might not happen — like "rolling a 6"
  • Sample space: all possible outcomes — for a die, that's {1,2,3,4,5,6}
  • Fair probability: for equally likely outcomes, probability = (favourable outcomes) / (total outcomes). Rolling a 6: 1/6.

Why it matters

Probability underlies weather forecasts, insurance pricing, medical testing, game design, quality control in manufacturing, and the algorithms behind spam filters and recommendation systems. Almost every field that deals with uncertainty relies on probability theory.

Formal axioms and core rules

Kolmogorov's Axioms (1933)

A probability function P assigns a number to events in a sample space S, satisfying:

  1. P(A) ≥ 0 for any event A (probabilities are never negative)
  2. P(S) = 1 (something in the sample space must happen)
  3. For mutually exclusive events A and B: P(A∪B) = P(A) + P(B) (probabilities of non-overlapping events add)

These three simple axioms, formalised by Andrey Kolmogorov, are enough to derive the entire mathematical theory of probability using measure theory.

Conditional probability

P(A|B) — "the probability of A given that B has occurred" — is defined as P(A∩B)/P(B), provided P(B) > 0. This captures how new information updates our assessment of likelihood.

Independence

Events A and B are independent if knowing one occurred doesn't change the probability of the other: P(A|B) = P(A), equivalently P(A∩B) = P(A)·P(B). Two coin flips are independent; drawing cards without replacement generally is not.

Bayes' Theorem

P(A|B) = P(B|A)·P(A) / P(B)

Named after Thomas Bayes (1763, published posthumously), this formula lets you reverse conditional probabilities — critical in medical testing (updating disease probability given a test result), spam filtering, and modern machine learning.

Random variables and distributions

A random variable assigns numerical values to outcomes of a random process. A probability distribution describes how likely each value is. The most famous distribution is the normal distribution (bell curve), which arises naturally whenever many small independent effects combine — described mathematically by the Central Limit Theorem.

Measure-theoretic foundations and interpretations

Measure-theoretic probability

Kolmogorov's 1933 monograph Grundbegriffe der Wahrscheinlichkeitsrechnung (Foundations of the Theory of Probability) placed probability on rigorous footing by defining it as a special case of measure theory: a probability space is a measure space (Ω, F, P) where Ω is the sample space, F is a σ-algebra of "measurable" events, and P is a measure with P(Ω) = 1. This unification allowed probability theory to draw on the full machinery of Lebesgue integration and functional analysis, resolving centuries of informal and sometimes inconsistent reasoning about probability in continuous settings (e.g., "the probability of picking an exact real number from an interval is 0, yet some number is picked").

Frequentist vs Bayesian interpretations

Beyond the mathematical formalism, there's philosophical debate about what probability means. The frequentist interpretation defines probability as the long-run frequency of an event over many repeated trials. The Bayesian interpretation treats probability as a degree of belief or confidence, which can apply even to one-off events (like "the probability it will rain tomorrow" or "the probability a given scientific hypothesis is true") that can't naturally be repeated. Both interpretations use the same mathematical axioms but differ in how they're applied and understood — a debate still active in statistics and philosophy of science.

The Law of Large Numbers and Central Limit Theorem

The Law of Large Numbers (Bernoulli, 1713, with rigorous versions by Chebyshev and Kolmogorov later) states that as you repeat a random experiment more and more times, the average of the results converges to the expected value. The Central Limit Theorem (de Moivre 1733 for the binomial case; general form by Lyapunov 1901 and Lindeberg 1922) states that the sum (or average) of many independent random variables tends toward a normal distribution, regardless of the original distribution of each variable — explaining why the bell curve appears so ubiquitously in nature and statistics.

Historical precursors before formal axiomatization

Before Kolmogorov, extensive work on probability was done by Jacob Bernoulli (Ars Conjectandi, 1713, published posthumously, containing the Law of Large Numbers), Pierre-Simon Laplace (Théorie analytique des probabilités, 1812, developing much of classical probability theory), and others — but without a fully rigorous axiomatic foundation, leading to occasional paradoxes and inconsistencies in edge cases (particularly involving continuous probability distributions) that Kolmogorov's measure-theoretic approach ultimately resolved.

📚 Sources

Tier 1 Kolmogorov, A.N. (1933). Grundbegriffe der Wahrscheinlichkeitsrechnung. Springer. — The founding axiomatic text.
Tier 1 Feller, W. (1968). An Introduction to Probability Theory and Its Applications. Vol. 1, 3rd ed. Wiley. — Standard rigorous textbook.
Tier 2 Hacking, I. (2006). The Emergence of Probability. 2nd ed. Cambridge University Press. — Historical and philosophical account.
Tier 3 Devlin, K. (2008). The Unfinished Game: Pascal, Fermat, and the Seventeenth-Century Letter that Made the World Modern. Basic Books.

🔗 Related entries

Historical originPascal-Fermat correspondence (1654)
Entry v1.0 · Added 2026-05-27 · Probability & Statistics · Concept JSON Markdown Status