A probability distribution describes how likely each possible value of a random quantity is. Pick one below to graph it with adjustable parameters, or scroll down for the theory, history, and a practical use case behind each one.
Distribution reference
Normal
Theory: Models continuous quantities that arise as the sum of many small, independent effects: the Central Limit Theorem. Its bell shape comes from a negative quadratic in the exponent, symmetric and peaked at the mean μ; the spread σ stretches or compresses it while the area underneath always stays 1.
History: First derived by Abraham de Moivre in 1733 as an approximation to the binomial distribution, decades before Gauss. Gauss used it in 1809 to justify least-squares fitting of astronomical data, and the name stuck to him anyway: a classic case of Stigler's Law of eponymy.
Gottlieb Biermann (1887), after Christian Albrecht Jensen; Wikimedia Commons, public domain
Practical use: Manufacturing control charts (Six Sigma): a machined part's dimension is assumed normal around a target, and limits at μ±3σ flag defective units.
Student's t
Theory: Models the standardized sample mean when the population's standard deviation is unknown and estimated from a small sample. Because that estimate itself fluctuates, the tails are heavier than the normal's; as the degrees of freedom ν grow, the extra uncertainty shrinks and the curve converges to the standard normal.
History: Derived in 1908 by William Sealy Gosset, a chemist at the Guinness brewery in Dublin, to draw sound conclusions from the small samples typical of brewery experiments. Guinness barred staff from publishing under their own name, so he signed the paper "Student"; Fisher later put the formula on rigorous footing in terms of degrees of freedom (1925).
Annals of Eugenics obituary photo, 1937; Wikimedia Commons, public domain
Practical use: The two-sample t-test: comparing the mean of a small clinical trial (say, 10 patients) against a baseline when the population variance is unknown.
Chi-squared
Theory: Models the sum of k independent squared standard-normal variables, so it lives only on the positive numbers and is right-skewed. Small k gives a sharp peak near zero; as k grows the sum trends toward normal by the Central Limit Theorem, and the curve becomes more symmetric around its mean k.
History: Independently derived in 1876 by geodesist Friedrich Robert Helmert while studying measurement-error variance, then rediscovered and named by Karl Pearson in 1900 for his goodness-of-fit test, unaware of Helmert’s earlier work. English-language sources only credited Helmert’s priority decades later, by Pearson himself in 1931.
National Portrait Gallery, London, 1910; Wikimedia Commons, public domain in the US
Practical use: Pearson's goodness-of-fit test: checking whether a die is fair, or whether disease incidence is independent of blood type in a contingency table.
F (Snedecor)
Theory: Models the ratio of two independent variance estimates, each a chi-squared variable divided by its own degrees of freedom, so it lives on the positive numbers and is right-skewed. d₁ shapes how peaked the curve is; d₂ mainly controls how heavy its right tail is.
History: Ronald Fisher gave the mathematical form around 1922–1924, working with a transformed statistic rather than the ratio itself. George Snedecor tabulated the distribution directly as a ratio in his 1934 textbook and named it "F" in Fisher's honor. The two never worked on it jointly; a decade separates their contributions.
University of Adelaide archive; Wikimedia Commons, public domain in the US
Practical use: One-way ANOVA: comparing mean crop yields across several fertilizer treatments through the ratio of between-group to within-group variance.
Binomial
Theory: Counts the number of successes in n independent trials that each succeed with probability p: the sum of n Bernoulli(p) trials. Larger n spreads and smooths the distribution toward a normal shape; p controls its skew, symmetric at p=0.5 and lopsided as p approaches 0 or 1.
History: Jacob Bernoulli derived the binomial probabilities and proved an early law of large numbers for them in Ars Conjectandi, published posthumously in 1713, the same book behind the Bernoulli distribution below. Abraham de Moivre had related results shortly before, in 1711, though Bernoulli's treatment is the one credited with formulating the distribution.
Practical use: Quality control: counting how many of 100 inspected units from a production batch are defective, when each unit independently fails with the same fixed probability.
Bernoulli
Theory: The simplest possible distribution: a single trial with two outcomes, weight p on success (1) and 1−p on failure (0). With only two points in its support there's no separate "spread" parameter; p alone fixes the whole shape.
History: Named after Jacob Bernoulli (1655–1705), whose treatment of single- and repeated-trial probabilities in Ars Conjectandi (1713, published by his nephew after his death) is the distribution’s origin, the same source behind the Binomial above.
Niklaus Bernoulli (1687); Wikimedia Commons, public domain
Practical use: A/B testing: whether a single visitor who lands on a page clicks the call-to-action button or not.
Poisson
Theory: Counts rare, independent events occurring at a constant average rate λ over a fixed interval of time, area, or volume: the limit of the Binomial as n→∞ and p→0 with np held fixed at λ. The same number λ sets both the center and the spread, its defining trait (mean equals variance).
History: Published by Siméon Denis Poisson in 1837, applied to modeling wrongful-conviction rates in criminal and civil judgments. Abraham de Moivre had anticipated similar results as early as 1711, but the distribution kept Poisson’s name; its best-known early application came later, in Ladislaus Bortkiewicz’s 1898 study of Prussian cavalry deaths by horse-kick.
Lithograph by F.-S. Delpech after N.-E. Maurin, before 1840; Wikimedia Commons, public domain
Practical use: Call-center staffing: modeling how many calls arrive in a given hour when they occur independently at a roughly constant average rate.
Exponential
Theory: Models the waiting time until the next event in a Poisson process: events happening continuously and independently at a constant rate λ. It's memoryless (having already waited doesn't change the odds of waiting longer), and that single property forces the exponential-decay shape; larger λ compresses the wait toward zero.
History: It falls directly out of the Poisson-process framework built up across the 19th century and formalized within 20th-century probability theory. Unlike Normal or Poisson, no single person is credited with discovering it as a named distribution.
Practical use: Reliability engineering: modeling the time to failure of a component with a constant hazard rate, such as a memoryless electronic part.
Uniform
Theory: Models a quantity known only to lie somewhere in [a,b], with every equal-length subinterval equally likely: the natural assumption when nothing favors one point over another. The flat density 1/(b−a) is exactly the height needed to keep the area under the curve equal to 1.
History: Not tied to a single historical figure: its origins are inconclusive; equiprobability reasoning goes back to 16th-century dice problems (Gerolamo Cardano), but its formalization as a continuous distribution is a byproduct of 20th-century measure-theoretic probability.
Practical use: The base primitive of software random-number generators (e.g. Python’s random.random()), later transformed via inverse-CDF sampling to generate values from other distributions.
Gamma
Theory: Generalizes the Exponential: it is the distribution of the sum of k independent exponential waiting times (integer k is the special case called Erlang). Small k gives a sharply decaying curve (k=1 is exactly the exponential) while larger k shifts the peak away from zero; the scale θ stretches the x-axis without changing that shape.
History: The Gamma function itself, which the distribution is built on, comes from Leonhard Euler's 1729 letters to Christian Goldbach, extending the factorial to non-integer arguments; pure 18th-century analysis, not statistics. The Gamma distribution as a statistical object arrived about 165 years later, when Karl Pearson included it (his "Type III" curve) in his 1895 system of skew frequency curves.
Jakob Emanuel Handmann (1753), Kunstmuseum Basel; Wikimedia Commons, public domain
Practical use: Actuarial science: modeling the total size of insurance claims in a period: always positive, and typically right-skewed.
Beta
Theory: Models a quantity confined to (0,1): naturally, a probability or proportion. Its two parameters act like pseudo-counts of prior successes (α) and failures (β): raising α pulls mass toward 1, raising β pulls it toward 0, and raising both together tightens the curve around their shared mean.
History: Like the Gamma, its function comes from Euler's 18th-century work (linked to the Gamma function by B(α,β)=Γ(α)Γ(β)/Γ(α+β)) with the "beta" name introduced later by Jacques Binet in 1839. As a distribution it appears implicitly in Thomas Bayes's 1763 essay on inverse probability, and was formally added to Pearson's skew-curve system (as "Type I") in the same 1895 paper as the Gamma.
Jakob Emanuel Handmann (1753), Kunstmuseum Basel; Wikimedia Commons, public domain
Practical use: Bayesian A/B testing: representing belief about a website's true conversion rate after observing some conversions and non-conversions.