Probability theory: rules and distributions
Anchor (Master): Pascal and Fermat 1654, Bernoulli 1713, Bayes 1763, Kolmogorov 1933
Intuition Beginner
Probability is the mathematics of uncertainty. Every day you make decisions based on uncertain outcomes: Will it rain? Will the bus be on time? Is this medical test result reliable? Probability gives you a precise language and a set of rules for reasoning about such questions.
The basic setup is simple. An experiment is any process that produces an uncertain outcome. The sample space is the set of all possible outcomes. For a coin flip, the sample space is {heads, tails}. For rolling a standard six-sided die, the sample space is {1, 2, 3, 4, 5, 6}. An event is any subset of the sample space. When you roll a die, "getting an even number" is the event {2, 4, 6}.
The probability of an event is a number between 0 and 1 that quantifies how likely the event is to occur. A probability of 0 means the event is impossible. A probability of 1 means the event is certain. Probabilities between 0 and 1 describe varying degrees of likelihood.
Three intuitive rules govern all of probability. First, every probability is between 0 and 1. Second, the probability of the entire sample space is 1, because something must happen. Third, if two events cannot happen at the same time (they are mutually exclusive), the probability that one or the other occurs is the sum of their individual probabilities.
These three rules, known as the axioms of probability, were formalised by the Russian mathematician Andrey Kolmogorov in 1933. Everything else in probability theory follows from these axioms. Conditional probability refines your assessment when you have partial information. If you know that a die roll produced an even number, the probability that it was a 4 changes from 1/6 to 1/3. This is conditional probability: the probability of one event given that another has occurred.
Independence is the opposite of conditional influence. Two events are independent if knowing that one occurred tells you nothing about the other. Successive flips of a fair coin are independent: knowing the first flip was heads does not change the probability that the second flip will be heads. Many common errors in probabilistic reasoning come from assuming independence when it does not hold.
Probability distributions describe how probabilities are spread across possible outcomes. A discrete distribution assigns probabilities to individual values. A continuous distribution assigns probabilities to ranges of values through a density curve. The most important distributions in statistics are the binomial (counts of successes in repeated trials), the normal (the bell curve that appears everywhere in nature), and the Poisson (rare events over time or space).
Probability also appears in everyday reasoning in ways that are not always obvious. When a weather forecast says there is a 30 percent chance of rain, this means that under similar atmospheric conditions, rain occurred about 30 percent of the time in historical data. When a doctor says a treatment has a 90 percent success rate, this reflects the observed proportion of successful outcomes among patients who received it. These interpretations rely on the frequentist view of probability: the long-run relative frequency of an event.
There is another interpretation called the subjective or Bayesian view. Under this view, probability represents a degree of belief. You might assign a subjective probability of 0.7 to the statement that a particular football team will win its next match, based on your knowledge of the teams, recent form, and injuries. Different people can assign different subjective probabilities to the same event because they have different information. The rules of probability apply equally to both interpretations.
One common source of confusion is the difference between probability and odds. Probability is the number of favourable outcomes divided by the total number of outcomes. Odds are the number of favourable outcomes divided by the number of unfavourable outcomes. A probability of 0.75 corresponds to odds of 3 to 1 (three favourable for every one unfavourable). Bookmakers typically quote odds rather than probabilities, and converting between the two is a basic skill for interpreting gambling and betting information. The conversion formulas are: probability corresponds to odds of to 1, and odds of to correspond to probability .
Another source of confusion is the gambler's fallacy: the mistaken belief that past outcomes of independent trials affect future ones. After observing five consecutive heads on a fair coin, many people feel that tails is "due." This is incorrect. The coin has no memory. Each flip is independent, so the probability of tails on the next flip remains exactly 0.5, regardless of what came before. The gambler's fallacy arises from confusing the short-run behaviour of individual trials (unpredictable) with the long-run behaviour of averages (predictable, by the law of large numbers).
Understanding probability is essential because all of statistical inference rests on it. Hypothesis tests, confidence intervals, regression models, and Bayesian analysis all use probability to quantify uncertainty and draw conclusions from data. Without probability, you cannot move from describing data to making principled generalisations about the world.
Visual Beginner
The table below shows the main probability rules and what each one computes.
| Rule | What it computes | Formula |
|---|---|---|
| Complement | Probability an event does NOT occur | |
| Addition (mutually exclusive) | Probability of A OR B (cannot both happen) | |
| Addition (general) | Probability of A OR B (may overlap) | |
| Multiplication (independent) | Probability of A AND B (no influence) | |
| Multiplication (general) | Probability of A AND B | |
| Conditional | Probability of A given B has occurred |
The next table summarises the key discrete probability distributions.
| Distribution | Models | Parameters | Mean | Variance |
|---|---|---|---|---|
| Bernoulli | Single trial (success/failure) | = success probability | ||
| Binomial | Number of successes in trials | , | ||
| Geometric | Trials until first success | |||
| Poisson | Rare events in fixed interval | = mean rate |
The table below summarises the most important continuous distributions.
| Distribution | Models | Parameters | Mean | Variance |
|---|---|---|---|---|
| Uniform (continuous) | Equal likelihood over an interval | (endpoints) | ||
| Normal | Measurement error, natural variation | |||
| Exponential | Time between rare events | = rate |
Worked example Beginner
A manufacturer knows that 5 percent of the widgets produced on an assembly line are defective. A quality inspector selects 10 widgets at random from the production line.
Part 1: Probability of exactly 0 defective widgets.
This is a binomial probability problem. Each widget is either defective (success, with probability ) or not defective (failure, with probability ). The inspector tests independent widgets.
The probability of getting exactly 0 defective widgets means all 10 are good. Since the selections are independent, multiply the probability of "good" for each one:
There is roughly a 60 percent chance that all 10 widgets pass inspection.
Part 2: Probability of exactly 2 defective widgets.
Now we need exactly 2 defectives out of 10. First, how many ways can we choose which 2 of the 10 are defective? This is "10 choose 2," which equals 45. For each specific arrangement, the probability is (two defectives and eight good ones).
There is about a 7.5 percent chance of finding exactly 2 defective widgets.
Part 3: Probability of at least 1 defective widget.
Instead of computing the probability of 1, 2, 3, ..., 10 defective widgets and adding them up, use the complement rule. The complement of "at least one defective" is "zero defective," which we already computed.
There is roughly a 40 percent chance that at least one widget in the sample of 10 is defective.
Part 4: A conditional probability example.
A factory has two production lines. Line A produces 60 percent of the widgets and has a 3 percent defect rate. Line B produces 40 percent of the widgets and has an 8 percent defect rate. A widget is selected at random from the factory's output and found to be defective. What is the probability it came from Line B?
Using Bayes' theorem with the law of total probability:
First compute using the law of total probability:
Then:
Even though Line B produces only 40 percent of the widgets, it accounts for 64 percent of the defective ones because its defect rate is much higher. This is an example of how Bayes' theorem can reverse the direction of reasoning: from "given the line, what is the defect probability" to "given a defect, which line is most likely?"
Part 5: Independence check.
Are the events "came from Line A" and "is defective" independent? They are independent if and only if . We have and . Since , these events are not independent. The production line matters for predicting defects.
The normal distribution: the bell curve
The normal distribution is the most important continuous distribution in statistics. Its probability density function has the familiar bell shape, symmetric about its mean , with spread controlled by its standard deviation . The 68-95-99.7 rule gives a quick way to interpret the spread: about 68 percent of the data falls within one standard deviation of the mean, about 95 percent within two, and about 99.7 percent within three.
For example, adult male heights in a population are approximately normally distributed with mean cm and standard deviation cm. By the 68-95-99.7 rule, about 68 percent of men have heights between 168 cm and 182 cm. About 95 percent fall between 161 cm and 189 cm. Fewer than 0.3 percent of men are taller than 196 cm or shorter than 154 cm.
The normal distribution arises as the limit of the binomial distribution when the number of trials is large. If you flip a fair coin 1000 times, the distribution of the number of heads is approximately normal with mean 500 and standard deviation about 15.8. This connection between the discrete binomial and the continuous normal is a special case of the central limit theorem, which Unit 26.04.01 develops in full.
The exponential distribution: waiting times
The exponential distribution models the time between events in a Poisson process. If buses arrive at a stop on average every 15 minutes (rate per minute), the waiting time for the next bus follows an exponential distribution with mean 15 minutes.
A distinctive property of the exponential distribution is the memoryless property: . If you have already waited 10 minutes for a bus, the probability of waiting at least 10 more minutes is the same as the probability of waiting at least 10 minutes starting from scratch. The distribution does not remember how long you have already waited. This property is unique to the exponential distribution among continuous distributions and is the reason it is used to model "random" arrival times.
Check your understanding Beginner
Formal definition Intermediate+
Axioms of probability
A probability space is a triple where:
- is the sample space, the set of all possible outcomes of an experiment.
- is a sigma-algebra on : a collection of subsets of (called events) that contains itself and is closed under complementation and countable unions.
- is a probability measure satisfying the Kolmogorov axioms:
- Non-negativity: for all .
- Normalisation: .
- Countable additivity: If are pairwise disjoint events (mutually exclusive), then .
From these axioms, all standard probability rules follow as theorems:
- Complement rule: .
- Monotonicity: If , then .
- Boole's inequality (union bound): .
- Inclusion-exclusion (for two events): .
- Continuity of probability: If (increasing sequence), then .
Conditional probability
For events and with , the conditional probability of given is:
This definition can be rearranged to yield the multiplication rule: .
Independence
Two events and are independent if and only if . Equivalently, , meaning that knowing occurred does not change the probability of .
Independence is a property of the probability measure, not of the events themselves. Events that appear unrelated may not be independent under a given probability model. Pairwise independence (every pair is independent) does not imply mutual independence (the joint probability of all events factoring into the product of marginals).
Law of total probability
If form a partition of the sample space (they are mutually exclusive and their union is ), and for all , then for any event :
This is the law of total probability. It decomposes the probability of into contributions from each partition element, weighted by the probability of that partition element. It is the foundational tool for computing marginal probabilities when conditional probabilities are known.
Bayes' theorem
From the definition of conditional probability and the law of total probability, Bayes' theorem follows:
Bayes' theorem inverts the direction of conditioning. Given a prior probability and a likelihood , it computes the posterior probability . This theorem underpins Bayesian inference, which treats parameters as random variables and updates beliefs in light of observed data.
Random variables and distribution functions
A random variable is a measurable function . The cumulative distribution function (CDF) of is . The CDF completely characterises the distribution of and satisfies:
- and .
- is non-decreasing.
- is right-continuous.
A random variable is discrete if it takes values in a countable set. Its distribution is described by a probability mass function (PMF): . A random variable is continuous if its CDF can be expressed as for some non-negative function called the probability density function (PDF), satisfying .
Common discrete distributions
The Bernoulli distribution models a single binary trial with success probability . Its PMF is and . It is the simplest nontrivial distribution and the building block for the binomial.
The binomial distribution models the number of successes in independent Bernoulli trials, each with success probability . Its PMF is for . The mean is and the variance is . When , the binomial reduces to the Bernoulli.
The geometric distribution models the number of trials until the first success in a sequence of independent Bernoulli trials. Its PMF is for . The mean is and the variance is . The geometric distribution is memoryless: .
The negative binomial distribution generalises the geometric distribution by modelling the number of trials until the -th success. Its PMF is for . When , the negative binomial reduces to the geometric. The mean is and the variance is . This distribution is used in ecology to model overdispersed count data where the variance exceeds the mean.
The Poisson distribution models the number of events in a fixed interval when events occur independently at a constant average rate . Its PMF is for . Both the mean and variance equal . The Poisson arises as the limit of the binomial when is large, is small, and is moderate.
Common continuous distributions
The continuous uniform distribution on assigns equal density to every point in the interval. Its PDF is for and zero otherwise. The mean is and the variance is . The uniform distribution is the simplest continuous distribution and is the basis for random number generation in computing.
The normal distribution has PDF . The standard normal distribution () is denoted , and any normal variable can be standardised via . The normal distribution is characterised by its moment-generating function and is closed under linear combinations: if and are independent, then .
The exponential distribution with rate has PDF for . Its CDF is . The mean is and the variance is . The exponential distribution is the continuous analogue of the geometric and is the only continuous distribution with the memoryless property.
Key theorem with proof Intermediate+
Theorem: Inclusion-exclusion for events
Let be events in a probability space. Then:
Proof (by induction).
Base case (): . Immediate.
Base case (): . This follows from countable additivity applied to the disjoint decomposition .
Inductive step: Assume the formula holds for events. Write . Apply the two-event case:
The first term expands by the inductive hypothesis. The last term is , which also expands by the inductive hypothesis applied to the events . Combining the expansions produces the stated formula for events.
This theorem is essential for computing the probability that at least one of several events occurs when the events are not mutually exclusive. In reliability theory, it computes the probability that a system with redundant components fails (at least one component failure propagates).
Key result: The Poisson approximation to the binomial
If and is large while is small such that remains moderate (say, ), then is approximately :
Justification. Fix and write , so . Then:
For large , , so . Also, as . Combining gives .
This approximation is used extensively in quality control (defect rates), epidemiology (rare disease incidence), and queueing theory (arrivals per time unit).
Exercises Intermediate+
Advanced results Master
Measure-theoretic foundations
The Kolmogorov axiomatisation (1933) embeds probability within measure theory. A probability measure is a finite measure with total mass 1, and the entire apparatus of Lebesgue integration, dominated convergence, and Fubini's theorem becomes available. This embedding resolves conceptual difficulties that arise with continuous sample spaces, where individual outcomes have probability zero yet events of interest have positive probability.
The Borel-Cantelli lemmas are fundamental results in this framework. The first lemma states: if the sum of probabilities of events converges (that is, ), then the probability that infinitely many occur is zero. The second lemma (under independence) gives the converse: if and the events are independent, then infinitely many occur with probability 1. These lemmas connect the convergence of probability series to the almost-sure behaviour of infinite sequences of events, and they underpin the strong law of large numbers.
Characteristic functions and convergence in distribution
The characteristic function of a random variable is , defined for all . It always exists (unlike moment-generating functions, which may diverge) and uniquely determines the distribution of . The Levy continuity theorem provides the bridge between pointwise convergence of characteristic functions and convergence in distribution: if for all , and is continuous at , then .
This result is the primary tool for proving the central limit theorem and its generalisations. The Lindeberg-Feller central limit theorem gives necessary and sufficient conditions (the Lindeberg condition) for a sum of independent, not necessarily identically distributed random variables to converge in distribution to a normal random variable.
Copulas and dependence structures
The marginal distributions of individual random variables do not uniquely determine their joint distribution. Copulas formalise this: by Sklar's theorem (1959), any joint CDF can be decomposed as where is a copula function on . The copula captures the dependence structure independently of the marginals.
The Gaussian copula model, which uses the multivariate normal copula to join arbitrary marginals, became infamous after the 2008 financial crisis for underestimating tail dependence in mortgage-backed securities. The dependence structure implied by the Gaussian copula is asymptotically independent in the tails: extreme events in one variable provide vanishingly small information about extremes in the other. Heavy-tailed copulas (Clayton, Gumbel, Student-t) provide different tail dependence properties.
Large deviations theory
While the law of large numbers asserts convergence of averages, and the central limit theorem characterises the typical fluctuation scale (), large deviations theory quantifies the exponential rate at which probabilities of atypical fluctuations decay. Cramer's theorem (1938) gives the rate function for sums of i.i.d. random variables: where is the Legendre-Fenchel transform of the log-moment-generating function.
This exponential decay is much faster than the polynomial decay suggested by Chebyshev's inequality, and it applies to events in the large-deviation regime (deviations of order from the mean, not ). Sanov's theorem extends the framework to empirical distributions, providing a variational characterisation of rare-event probabilities in terms of relative entropy (Kullback-Leibler divergence).
Extreme value theory
Rather than modelling the centre of a distribution, extreme value theory focuses on the behaviour of maxima and minima. The Fisher-Tippett-Gnedenko theorem (1928, 1943) shows that, under appropriate normalisation, the distribution of the sample maximum converges to one of three extreme value distributions: Gumbel (light tails), Frechet (heavy tails), or Weibull (bounded tails). This is the analogue of the central limit theorem for extremes.
The peaks-over-threshold approach, based on the Pickands-Balkema-de Haan theorem, shows that exceedances above a high threshold are approximately distributed according to a generalised Pareto distribution. This provides a practical framework for estimating probabilities of extreme events (floods, stock market crashes, heat waves) from finite data.
Concentration inequalities
Beyond Chebyshev's inequality, a rich family of concentration inequalities provides sharper bounds on the probability that a random variable deviates from its mean. Hoeffding's inequality (1963) states that for bounded independent random variables with sample mean :
This exponential bound is dramatically sharper than Chebyshev's bound and is the workhorse of statistical learning theory, providing finite-sample guarantees for empirical risk minimisation.
McDiarmid's inequality extends Hoeffding to general functions of independent random variables, provided the function satisfies a bounded differences condition. Bernstein's inequality incorporates variance information, giving tighter bounds when the variance is small relative to the range. These inequalities are central to high-dimensional statistics and machine learning, where they control the complexity of function classes through tools like VC dimension and Rademacher complexity.
Stochastic processes
A stochastic process is a collection of random variables indexed by time (or space). The simplest examples include random walks (cumulative sums of independent steps), Poisson processes (counting the number of rare events over time), and Markov chains (sequences where the next state depends only on the current state, not the history).
The Poisson process with rate has two defining properties: the number of events in any interval of length follows a Poisson distribution with mean , and the numbers of events in non-overlapping intervals are independent. The waiting times between consecutive events are independent exponential random variables with mean . This process models radioactive decay, customer arrivals at a service centre, and earthquake occurrence (approximately).
Markov chains generalise the independence assumption to allow limited dependence: the distribution of the next state depends only on the current state. Under mild conditions (irreducibility and aperiodicity), a finite Markov chain has a unique stationary distribution such that the long-run proportion of time spent in each state converges to regardless of the starting state. This convergence theorem underpins Markov chain Monte Carlo (MCMC) methods in Bayesian computation.
Connections Master
To descriptive statistics (Unit 26.01.01)
Descriptive statistics summarises observed data; probability theory provides the mathematical framework for understanding why those summaries take the values they do. The sample mean is a random variable whose distribution is governed by probability laws. The variance computed in descriptive statistics estimates a population variance that probability theory characterises precisely. The histograms and density curves of Unit 26.01.01 are empirical approximations of the probability density functions defined here.
To sampling distributions and the Central Limit Theorem (Unit 26.04.01)
The normal distribution introduced in this unit is the building block for the central limit theorem, the most important result in statistics. The CLT explains why the normal distribution appears so frequently: sums (and averages) of independent random variables tend toward normality regardless of the original distribution. The binomial distribution, the Poisson distribution, and the exponential distribution all connect to the normal distribution through limiting arguments that the next unit develops rigorously.
To Bayesian statistics (Unit 26.07.01)
Bayes' theorem, proved in this unit as a direct consequence of the definition of conditional probability, is the engine of Bayesian inference. The prior, likelihood, and posterior framework of Bayesian statistics maps directly onto the ingredients of Bayes' theorem: is proportional to . Unit 26.07.01 extends this from single applications to full posterior distributions over parameter spaces.
To hypothesis testing (Unit 26.05.01)
Every hypothesis test relies on probability distributions. The null distribution (the distribution of the test statistic under the null hypothesis) is derived from the probability models introduced here. The p-value is a probability: the probability of observing a test statistic at least as extreme as the one actually observed, assuming the null hypothesis is true. Without probability theory, hypothesis testing has no foundation.
To nonparametric methods (Unit 26.08.01)
Nonparametric methods avoid assuming a specific probability distribution for the data. Instead, they use rank-based procedures that are valid under very general conditions. The theory behind these methods still requires probability: the distribution of ranks under the null hypothesis is derived from combinatorial probability (all permutations of ranks being equally likely). Permutation tests, a cornerstone of nonparametric statistics, compute p-values by enumerating all possible assignments of observations to groups and counting how many produce test statistics as extreme as the observed one.
To information theory and machine learning
The probability distributions defined here (especially the normal, binomial, and Poisson) are the building blocks of generative models in machine learning. Maximum likelihood estimation seeks the parameter values that maximise the probability of observed data. Cross-entropy loss in neural network training is the negative log-probability of the correct class under the model's predicted distribution. Information theory, built on probability, quantifies uncertainty through entropy and measures the information gained from observations through the Kullback-Leibler divergence.
To physics and the natural sciences
Probability theory arose partly from physics. The Maxwell-Boltzmann distribution for molecular speeds in a gas, the Poisson distribution for radioactive decay events, and the exponential distribution for waiting times between independent events all have deep physical justifications. Quantum mechanics is intrinsically probabilistic: the Born rule assigns probabilities to measurement outcomes based on the squared modulus of the wave function. Statistical mechanics derives macroscopic thermodynamic properties from microscopic probabilistic models of particle behaviour.
To genetics and biology
Probability is fundamental to genetics. Mendel's laws of inheritance are probability statements: the probability that an offspring inherits a particular allele from a heterozygous parent is 0.5. Population genetics models the evolution of allele frequencies using stochastic processes (the Wright-Fisher model, the coalescent). Bioinformatics uses probabilistic models for sequence alignment, gene finding, and phylogenetic inference. The Poisson distribution models the number of mutations along a DNA sequence, and the exponential distribution models the time between speciation events in phylogenetic trees.
To finance and risk management
Modern finance is built on probability. Portfolio theory (Markowitz, 1952) uses the mean and variance of returns to optimise investment allocations. The Black-Scholes model prices options using geometric Brownian motion, a continuous-time stochastic process. Value-at-risk (VaR) estimates quantify the maximum expected loss over a time horizon at a given confidence level. Credit risk models estimate the probability of default using logistic regression and survival analysis. The 2008 financial crisis highlighted the dangers of underestimating tail probabilities and assuming normal distributions when the true distributions have heavy tails.
Historical and philosophical context Master
Origins in gambling and games of chance
Probability theory began with a question about gambling. In 1654, the Chevalier de Mere, a French nobleman and avid gambler, posed two problems to Blaise Pascal. The first involved dividing stakes in an interrupted game (the "problem of points"). The second concerned the odds of rolling at least one double-six in 24 rolls of two dice. Pascal corresponded with Pierre de Fermat about these questions, and their exchange is generally regarded as the birth of probability theory.
Their solution to the problem of points introduced the fundamental idea of enumerating equally likely outcomes and computing probabilities as ratios of favourable to total outcomes. This classical definition of probability, restricted to finite sample spaces with equally likely outcomes, remained the dominant framework for over two centuries.
Jacob Bernoulli and the law of large numbers
Jacob Bernoulli's Ars Conjectandi (1713, published posthumously) proved the first limit theorem in probability: the weak law of large numbers for binomial trials. Bernoulli showed that as the number of trials grows, the relative frequency of successes converges to the true probability of success. He called this his "golden theorem" and spent twenty years developing the proof.
Bernoulli's result resolved a philosophical tension. The classical definition of probability assumed equally likely outcomes, but many real-world probabilities (the probability that a ship arrives safely, the probability a person survives to age 60) have no natural symmetry. Bernoulli's law of large numbers suggested that such probabilities could be estimated empirically: observe many trials, compute the relative frequency, and trust that it approximates the true probability. This frequency-based interpretation became the foundation of the frequentist school of statistics.
Abraham de Moivre and the normal distribution
Abraham de Moivre, a French mathematician living in England, derived the normal approximation to the binomial distribution in his 1733 pamphlet Approximatio ad Summam Terminorum Binomii. This was the first appearance of the normal distribution, predating Gauss's work by nearly 70 years. De Moivre showed that the binomial probability could be approximated by what we now call the normal density function, with the factor appearing naturally from the approximation. He also noted the appearance of the constant in the limiting expression, connecting probability to the exponential function.
Thomas Bayes and inverse probability
Thomas Bayes's essay, published posthumously in 1763 by Richard Price, addressed what Bayes called "inverse probability": given that an event has occurred, what can be inferred about the probability of its cause? Bayes's theorem provides the mathematical answer, but the philosophical implications were far-reaching. If probability represents a degree of belief (rather than a long-run frequency), then Bayes's theorem describes how rational agents should update their beliefs in light of evidence.
Pierre-Simon Laplace independently developed and generalised Bayes's result in his 1774 memoir and his 1812 Theorie Analytique des Probabilites. Laplace applied Bayesian reasoning to celestial mechanics, estimating the masses of planets from observational data and quantifying the uncertainty in his estimates. His "rule of succession," which gives the probability that the sun rises tomorrow given that it has risen every day in the past days, became a flashpoint for philosophical debates about the nature of induction.
Kolmogorov's axiomatisation
The measure-theoretic axiomatisation of probability by Andrey Kolmogorov in 1933 (Grundbegriffe der Wahrscheinlichkeitsrechnung) resolved foundational difficulties that had plagued probability theory since the late nineteenth century. The problem of Bertrand's paradox (1889), where different methods of choosing a "random chord" on a circle gave different probabilities, revealed the inadequacy of the classical definition for continuous sample spaces. Kolmogorov's framework, building on the Lebesgue measure theory developed by Borel and Lebesgue, provided a rigorous and consistent foundation.
Kolmogorov's axioms also enabled the development of rigorous limit theorems. The strong law of large numbers, the three-series theorem for the convergence of random series, and the Kolmogorov zero-one law (which states that tail events have probability zero or one) all require the measure-theoretic framework to state precisely and prove.
The frequentist-Bayesian divide
The twentieth century saw an intense philosophical and methodological debate between frequentist and Bayesian statisticians. Frequentists, following Fisher, Neyman, and Pearson, interpret probability as long-run frequency and restrict statistical methods to procedures with guaranteed error rates (significance levels, confidence coverage). Bayesians, following de Finetti, Savage, and Jeffreys, interpret probability as degree of belief and use Bayes's theorem to update beliefs coherently as data arrive.
The debate has softened in recent decades. Most modern statisticians use a mix of frequentist and Bayesian methods depending on the problem. Empirical Bayes methods bridge the gap by estimating prior distributions from data. The computational revolution (MCMC algorithms) has made Bayesian methods practical for complex models where frequentist methods struggle. The philosophical divide remains, but the practical toolkit has become increasingly unified.
The subjective interpretation and de Finetti's theorem
Bruno de Finetti (1937) argued that probability does not exist as an objective property of the world but is always a subjective assessment by an individual. His representation theorem shows that any exchangeable sequence (a sequence whose joint distribution is invariant to permutation) can be represented as a mixture of i.i.d. sequences. This provides a behavioural justification for Bayesian updating: if your beliefs about a sequence are exchangeable, you should act as if there exists a parameter governing the sequence, and you should update your belief about that parameter using Bayes's theorem.
Modern developments: algorithmic probability and martingales
The late twentieth and early twenty-first centuries have seen probability theory penetrate computer science, finance, and information theory. Algorithmic randomness (Martin-Lof 1966) characterises individual random sequences through the lens of computability theory. Martingale theory, developed by Doob (1953), provides the mathematical framework for fair games and underpins the mathematical theory of financial derivatives (the Black-Scholes model). Stochastic calculus (Ito's lemma, stochastic differential equations) extends differential calculus to random processes and is the mathematical backbone of quantitative finance and mathematical biology.
Probability in the computing era
The advent of computers transformed probability theory from a purely theoretical discipline into a practical computational tool. Monte Carlo methods, first proposed by Metropolis and Ulam in 1949, use random sampling to approximate quantities that are difficult or impossible to compute analytically. The Metropolis-Hastings algorithm (1953, 1970) and Gibbs sampling (Geman and Geman, 1984) made Bayesian inference computationally feasible for the first time, enabling posterior estimation in complex hierarchical models.
Probabilistic programming languages (Stan, PyMC, Church, Anglican) have further democratised Bayesian methods by allowing users to specify generative models in a programming language and letting the compiler handle inference. These tools represent a convergence of probability theory, computer science, and statistics that would have been unimaginable to Kolmogorov and his contemporaries.
The role of probability in artificial intelligence
Modern artificial intelligence is deeply probabilistic. Machine learning algorithms learn probability distributions from data. Neural network classifiers output probability distributions over classes. Generative models (variational autoencoders, diffusion models, large language models) learn to sample from complex high-dimensional distributions. Reinforcement learning agents maximise expected cumulative reward, a fundamentally probabilistic objective.
The probabilistic perspective provides a unifying framework for reasoning about uncertainty, prediction, and decision-making under uncertainty. It connects statistical estimation, information theory, computational complexity, and rational agency into a coherent mathematical framework.
Bibliography Master
Kolmogorov, A.N. Grundbegriffe der Wahrscheinlichkeitsrechnung. Springer, 1933. The foundational axiomatisation of probability theory within measure theory.
Bernoulli, J. Ars Conjectandi. 1713. Contains the first proof of the law of large numbers (Bernoulli's "golden theorem") and early work on combinatorial probability.
Bayes, T. "An Essay towards Solving a Problem in the Doctrine of Chances." Philosophical Transactions of the Royal Society, 53, 1763, pp. 370-418. The original statement of what is now called Bayes' theorem, published posthumously by Richard Price.
de Moivre, A. The Doctrine of Chances. 1718 (1st ed.), 1738 (2nd ed.), 1756 (3rd ed.). Contains the first derivation of the normal approximation to the binomial and early work on the annuity problem.
Laplace, P.S. Theorie Analytique des Probabilites. 1812. The most comprehensive work on probability theory before the twentieth century, generalising Bayes's theorem and applying it to astronomical data.
Feller, W. An Introduction to Probability Theory and Its Applications, Vol. 1 (3rd ed.). Wiley, 1968. The classic text on discrete probability, known for its clarity and elegant proofs.
Feller, W. An Introduction to Probability Theory and Its Applications, Vol. 2 (2nd ed.). Wiley, 1971. The companion volume on continuous probability, measure theory, and limit theorems.
Billingsley, P. Probability and Measure (3rd ed.). Wiley, 1995. A rigorous measure-theoretic treatment of probability, including the Lebesgue integral, martingales, and Brownian motion.
Durrett, R. Probability: Theory and Examples (5th ed.). Cambridge University Press, 2019. A modern graduate text emphasising examples and applications alongside rigorous theory.
Stigler, S.M. The History of Statistics: The Measurement of Uncertainty before 1900. Harvard University Press, 1986. Chapters 2-3 cover the development of probability theory from Pascal and Fermat through Laplace.
Hald, A. A History of Parametric Statistical Inference from Bernoulli to Fisher, 1713-1935. Springer, 2007. Traces the evolution of probability-based inference from Bernoulli's law of large numbers to Fisher's likelihood methods.
de Finetti, B. "La prevision: ses lois logiques, ses sources subjectives." Annales de l'Institut Henri Poincare, 7, 1937, pp. 1-68. The foundational paper on subjective probability and exchangeability.
Shafer, G. and Vovk, V. "The Sources of Kolmogorov's Grundbegriffe." Statistical Science, 21(1), 2006, pp. 70-98. A detailed analysis of the intellectual context and mathematical predecessors of Kolmogorov's axiomatisation.
Doob, J.L. Stochastic Processes. Wiley, 1953. The foundational text on martingale theory and its application to stochastic processes.
Ross, S.M. A First Course in Probability (9th ed.). Pearson, 2014. A widely used undergraduate text with extensive examples and exercises covering all the distributions introduced in this unit.
Wasserman, L. All of Statistics: A Concise Course in Statistical Inference. Springer, 2004. Chapters 1-2 provide a compact but rigorous treatment of probability theory at the intermediate level.
Shafer, G. "The Early Development of Mathematical Probability." In The Oxford Handbook of Probability and Philosophy, Oxford University Press, 2016. A survey of the historical development from Cardano through Laplace.
Hacking, I. The Emergence of Probability. Cambridge University Press, 1975. A philosophical and historical analysis of how the concept of probability emerged in the seventeenth century.
Malliavin, P. Integration and Probability. Springer, 1995. A modern treatment of measure theory and probability that emphasises the connection between the Lebesgue integral and expectation.