Probability Distributions
Probability Distributions
A probability distribution is a way of describing how likely each possible outcome is when something is uncertain. It assigns a probability—a number between 0 and 1—to each outcome, where a higher number means the outcome is more likely to occur.
Start by asking what kind of number you have. The chart moves from your number to its pattern.
Contents: A count of how many · A length of waiting · A measured amount · A choice or a share · One family
A count of how many
These distributions describe the number of occurrences or successes in a fixed setting.
Bernoulli
The Bernoulli distribution models a single event that either happens or does not. It has one parameter: the probability that the event occurs.
Examples: whether a message gets a reply · whether a visitor signs up
Binomial
The Binomial distribution models a fixed number of independent trials, each with the same probability of success. It has two parameters: the number of trials and the probability of success on each trial.
Examples: replies to 200 sent messages · signups from 50 demo calls
Poisson
The Poisson distribution models the count of events that occur at a constant rate over a period of time or space. It has one parameter: the average count during that period—and in this distribution, the mean and variance are equal.
Examples: emails in an hour · typos on a page
Negative binomial
The Negative binomial distribution describes event counts in a period when the underlying rate varies from one period to the next. When rates vary this way, you get both more zero-count periods and more very large counts than a Poisson distribution with the same average—the spread is wider. This distribution has two parameters: the average count and how much wider the counts run compared to Poisson with that average. The same distribution also describes the number of failures before you achieve a fixed number of successes in repeated yes-or-no trials—these are two views of the same mathematical shape.
Examples: messages sent per day · page views per day
Geometric
The Geometric distribution models the number of trials until the first success. It has one parameter: the probability of success on each trial.
Examples: retries until a download works · applications until an offer
A length of waiting
These distributions describe how long you wait for an event or collection of events.
Exponential
The Exponential distribution models the time until a single event occurs in a process where events happen at a constant rate. It has one parameter: the rate at which events occur.
Examples: the wait for the next email · the gap between two customers
Gamma
The Gamma distribution models the time until a fixed number of events occur in a constant-rate process. It has two parameters: the number of events you are waiting for and the rate at which events occur.
Examples: the wait for the tenth customer · a batch of ten jobs finishing
Weibull
The Weibull distribution models the time until failure of a system, and handles situations where the failure rate changes over time. It has two parameters: a shape parameter that controls whether failures become more or less likely as time passes, and a scale parameter that sets the overall timespan.
Examples: the life of a hard drive · how long a subscription is kept
A measured amount
These distributions describe continuous quantities like heights, weights, or errors.
Normal
The Normal distribution, also called the Gaussian distribution, is a bell curve symmetric around its center. It has two parameters: the mean (center) and the standard deviation (spread).
Examples: people’s heights · measurement error
Log-normal
The Log-normal distribution models quantities that cannot be negative and have a long tail toward larger values. It arises when the logarithm of the quantity follows a normal distribution.
Examples: reply delays · file sizes · incomes
Power law
The Power law distribution describes quantities where larger values are rarer than smaller values, with no natural peak. It has one parameter: an exponent that controls how steeply the tail falls off.
Examples: city sizes · follower counts
Student’s t
Student’s t distribution is a bell curve like the normal distribution but with heavier tails, arising when you average a small sample from a normal population. It has one parameter: the degrees of freedom, which relates to the sample size.
Examples: the average of five test runs
A choice or a share
These distributions describe proportions, probabilities, or selections among categories.
Categorical and Zipf
The Categorical distribution models the outcome when you choose one item from a fixed set of categories, each with its own probability. The Zipf distribution is a special categorical distribution where category popularity follows a power law—the first category is most popular, the second half as popular, and so on.
Examples: which friend you text most · which words a language uses most
Beta
The Beta distribution describes an uncertain probability—how likely an event is to occur—based on observed successes and failures. It has two parameters: the count of observed successes and the count of observed failures.
Examples: how often customers click, after watching 40 of them
Uniform
The Uniform distribution gives equal probability to all values in a range. It has two parameters: the minimum and maximum of the range.
Examples: a computer’s raw random number · a delivery window between 9 and 5, nothing else known
One family
Many distributions arise from one another through simple modifications. The exponential distribution is a special case of the gamma distribution; the geometric distribution is a special case of the negative binomial; and the normal distribution emerges as the limit of many other distributions when samples grow large.
Links
- Per Capita gives the division that turns a raw count into a rate. That division comes before any count here gets its distribution read.
- Positional Decisions and Expected Value gives what an average over many repeats is worth to a decision when any single result can fail.
- Expectancy in Wicked Environments gives a way to weigh chance times size when nobody posts the odds. The chance in that weighing is what a distribution here supplies.
- Confidence Calibration gives two checks on whether a certainty of yours deserves the weight you put on it. The beta here asks the same question with counted yeses and noes.
Open questions
- A computer’s random number generator produces uniform draws. How it bends those draws into the other distributions here is not on this page.
Sources
- The section texts were written by Claude Haiku 4.5 on 2026-09-01, cold, from a spec naming the audience, the format, and the facts that had to appear. The spec and the method are in
01 - Workbench/GENERATOR-eli5-haiku-DRAFT-2026-09-01.md. - The figures are drawn from the real mass and density functions by
scripts/gen-distribution-diagrams.py.