Continuous Probability
Grinstead & Snell ยท GFDL ยท PDF
When the sample space is a continuum, individual points have probability zero. Probability lives in areas under curves. A density function f(x) replaces the discrete weight function, and P(a < X < b) = ∫ f(x) dx from a to b.
From counting to measuring
Spin a wheel, pick a random real number between 0 and 1, measure a person's height. The sample space is an interval (or all of R). You cannot list the outcomes, so you cannot assign a positive probability to each one. Instead, you describe how probability is distributed across regions.
Density functions
A density function f(x) satisfies two rules (the continuous versions of the discrete axioms):
- f(x) ≥ 0 for all x
- ∫ f(x) dx over the entire real line = 1
The density at a point is not a probability. It is a rate: how quickly probability accumulates near that point. Only areas (integrals) give probabilities.
The normal distribution
The most important continuous distribution. Its density is the bell curve: f(x) = (1/√(2π)) e^(-x²/2) for the standard normal (mean 0, variance 1). About 68% of the area lies within one standard deviation of the mean, 95% within two.
Cumulative distribution function
The CDF is F(x) = P(X ≤ x) = ∫ f(t) dt from -∞ to x. It rises from 0 to 1 and is non-decreasing. The density is the derivative of the CDF: f(x) = F'(x). Two ways to describe the same distribution.
Notation reference
| Textbook | Scheme | Meaning |
|---|---|---|
| f(x) | (normal-density x) | Density function |
| F(x) = P(X ≤ x) | (uniform-cdf x) | Cumulative distribution function |
| ∫ f(x)dx = 1 | (integrate f a b n) | Total area = 1 (normalization) |
| P(a < X < b) | (integrate f a b n) | Probability = area under curve |
| N(0, 1) | (normal-density x) | Standard normal distribution |
Neighbors
Adjacent chapters
- ๐ฐ Ch 1: Discrete Probability โ the finite version of everything on this page
- ๐ฐ Ch 3: Combinatorics โ counting, which powers discrete probability
- ๐ฐ Ch 4: Conditional Probability โ conditioning works for continuous distributions too
Paper pages
- ๐ Fritz 2020 โ Markov categories handle both discrete and continuous probability in one framework
- ๐ Staton 2025 โ probabilistic programs sample from continuous distributions
- ๐ Baez-Fritz 2011 โ entropy as a functor, connecting information to probability
Foundations (Wikipedia)