Post

Probability Distributions: A Field Guide

A map of ten common probability distributions organized by the random process each one describes, with a pick-a-distribution selector table.

Learning path · Lesson 1 of 11

Probability distributions

  1. A field guide to probability distributions You are here
  2. Binomial
  3. Geometric
  4. Negative Binomial
  5. Poisson
  6. Exponential
  7. Normal
  8. Log-Normal
  9. Laplace
  10. Gamma
  11. Beta
Probability Distributions: A Field Guide

This is the hub for a ten-part series on the probability distributions that turn up most often in practice. Each post follows the same shape: the question the distribution answers, a compact model card, what its parameters do to the shape, one fully worked example (including “at least” and “at most” probabilities, not just exact ones), when the model fits and when it fails, and a short SciPy check.

The organizing idea is that a distribution is a story about a random process, not a curve to pattern-match against a histogram. Recognizing the process is what lets us calculate something useful, and knowing the assumptions is what keeps us honest.

Pick a Distribution

Start from the question, not the data’s size or a shape it happens to resemble:

The questionCandidate distribution
How many successes in $n$ independent trials?Binomial
How many attempts until the first success?Geometric
How many attempts (or failures) until the $r$-th success?Negative Binomial
How many events occur in a fixed interval?Poisson
How long until the next constant-rate event?Exponential
How does symmetric, additive variation spread around a center?Normal
What happens when many positive factors multiply?Log-Normal
Symmetric variation with a sharp center and more extremes than Normal?Laplace
How long until the $k$-th constant-rate event?Gamma
How is a proportion or probability on $[0,1]$ distributed?Beta

The table names a candidate family. Whether it actually fits depends on the process assumptions and on model checking, never on the question alone.

The Conceptual Path

Chronologically the posts run Binomial through Beta, but they group into four families that share a mechanism.

Group A, repeated binary trials. Binomial counts successes in a fixed number of trials; Geometric counts trials until the first success; Negative Binomial counts until the $r$-th success (and doubles as an overdispersed-count model).

Group B, events in continuous time. Poisson counts events in an interval; Exponential measures the waiting time to the next one. They are two views of the same constant-rate process: a count in a window versus the time between arrivals.

Group C, continuous measurements. Normal captures additive variation around a center; Log-Normal captures positive multiplicative variation; Laplace captures symmetric deviations with a sharper peak and heavier-than-Normal tails.

Group D, positive and bounded shapes. Gamma generalizes the Exponential to the waiting time for the $k$-th event, and serves as a flexible right-skewed model for any positive quantity; Beta models a proportion or probability confined to $[0,1]$, and is the conjugate prior for the Binomial’s success probability.

One Habit to Carry Through

A dataset being positive, bell-shaped, or overdispersed is evidence worth investigating, not proof that a named distribution generated it. For every distribution in the series, the useful questions are the same: what is the random variable, what are the parameters and their units, what process would produce this shape, and what observed pattern would tell us the model is wrong?

Enjoyed this article? Never miss out on future posts - follow me.
© Sayan Biswas. All rights reserved.