Modeling Distributions
Normal (Gaussian) N(μ,σ) — The bell curve. Models errors and averages; foundation of the Central Limit Theorem.
Binomial Bin(n,p) — Number of successes in n independent trials with probability p.
Poisson Pois(λ) — Count of rare events in a fixed interval, with mean rate λ.
Exponential Exp(λ) — Waiting time until the next Poisson event (same rate λ). It is memoryless: the chance of waiting longer does not depend on how long you've waited.
Gamma Gamma(α,β) — Waiting time until the α-th event (sum of α exponentials); with shape α and rate β. It is the conjugate prior for the rate of a Poisson/Exponential.
Special cases: Exp(λ)=Gamma(1,λ) and χν2=Gamma(ν/2,1/2).
Beta Beta(α,β) — Distribution of a proportion on [0,1]. It is the conjugate prior for a success probability, the Bayesian basis of A/B testing.