Common Distributions

A probability distribution assigns mass or density to the values of a random variable. The useful part is not the name; it is the data-generating mechanism. Bernoulli and binomial laws describe independent yes/no trials, multinomial laws describe categorical counts, Poisson laws describe counts under a constant rate, normal laws describe symmetric additive noise, and gamma or exponential laws describe positive waiting-time-like quantities.

Distribution choice directly affects maximum likelihood, expectation and variance, central limit theorem approximations, and the null models used in hypothesis testing. A test statistic is only meaningful after its observation model and reference distribution have been specified.

Matching laws to mechanisms

Use the support first. Binary outcomes, nonnegative counts, positive waiting times, real-valued errors, and proportions live on different sample spaces. Then check the mechanism: independent trials, fixed margins, additive noise, and estimated variance all imply different distributions.

DistributionWhat it modelsMeanVarianceSupport
One yes/no trial
Successes in independent yes/no trialsintegers
Counts across several mutually exclusive categories for cell for cell count vectors summing to
Successes in draws without replacement from a finite populationfeasible integer counts
Event count in a fixed interval at rate integers
Waiting time to the next event at constant rate real values
Positive waiting-time-like total or positive scale quantityreal values
Unknown probability or proportion on real values
Additive error, large-sample averages, symmetric real-valued noisereal line
Vector-valued Gaussian noise with covariance structurecovariance matrix real vectors
Student Standardized mean when variance is estimated for for real line
Sum of squared standard normals; large-sample count-discrepancy testsreal values
Ratio of scaled chi-square variables; variance and ANOVA comparisons for depends on both degrees of freedomreal values

Discrete outcome models

Bernoulli distribution

A Bernoulli random variable represents one binary trial.

Binomial distribution

A binomial variable is the sum of independent Bernoulli trials with the same probability:

Multinomial and product-multinomial distributions

The multinomial distribution generalizes the binomial from two categories to categories, with . It is the usual model behind large contingency-table tests. A product-multinomial model means several independent multinomial samples are observed side by side, such as one categorical outcome distribution per experiment arm or table row.

Hypergeometric distribution

The hypergeometric distribution models draws without replacement from a finite population:

Here is population size, is the number of successes in the population, and is the number drawn. Fisher’s exact test uses this law after conditioning on fixed table margins.

Poisson distribution

The Poisson distribution is often a first model for event counts over equal exposure windows. Its mean equals its variance, so overdispersed count data often need a different model.

Positive continuous models

Exponential distribution

For a waiting time to the next event at rate :

Gamma distribution

For a positive continuous quantity, the shape-scale gamma density is:

The gamma function generalizes factorials to positive real inputs:

so for integer , .

Its distribution function is the accumulated density,

Beta distribution

For a probability or rate parameter on the unit interval, the beta density is:

Here is the normalizing constant that makes the density integrate to one. Beta distributions appear naturally as priors and posteriors for Bernoulli or binomial probabilities in Bayesian statistics.

Normal and test-statistic distributions

Normal and Gaussian distributions

The normal distribution, also called the Gaussian distribution, models symmetric additive noise and many large-sample estimators:

The standard normal is . It is the reference law behind z-statistics when an estimator has been centered and divided by its standard error.

Multivariate normal distribution

For vector-valued data, the multivariate normal distribution writes:

Here is a mean vector and is a covariance matrix. The bivariate normal is the two-dimensional case used when illustrating covariance and correlation.

Student t distribution

Student’s t distribution appears when a mean is standardized using an estimated standard deviation:

The parameter is the degrees of freedom. As grows, the t distribution approaches the standard normal; for small , its heavier tails reflect uncertainty from estimating the variance.

Chi-square distribution

A chi-square variable with degrees of freedom is a sum of squared independent standard normal variables:

Chi-square laws are reference distributions for variance calculations and large-sample count-discrepancy tests.

F distribution

An F variable is a ratio of two scaled independent chi-square variables:

F distributions are used in ANOVA because the statistic compares variation explained by group labels with residual variation, each measured as a mean square.

Empirical distributions

Not every useful reference model is a named parametric family. An empirical distribution puts mass on each observed value. Kolmogorov-Smirnov, Anderson-Darling, rank, bootstrap, and permutation methods compare empirical distributions or build a reference distribution by resampling under a null assumption such as exchangeability.

Worked visual comparison

The distribution should match the mechanism and the support. Use a binomial model when there is a fixed number of independent opportunities, such as 20 users each either clicking or not clicking. Use a Poisson model when counting events over a fixed exposure window, such as support tickets arriving in one hour under a roughly constant rate. Use a gamma model for positive continuous amounts or waiting-time-like quantities, such as time until a multi-step repair completes.

Binomial, Poisson, and Gamma distributions compared by shape, support, and tail spread.

The plot instantiates the generic rows with , , and . The binomial and gamma examples both have mean 6, but the gamma variance is instead of , so its right tail is much wider. The Poisson example is centered lower, near 4, and its variance equals its mean; that equality is a modeling assumption, not a universal law for count data.

Caveats

Independence, constant rate, support, and tail assumptions are part of the model. Zero inflation, truncation, seasonality, and dependence can make a convenient distribution wrong.

References