Back to AI Math Mind Map
中文·English
📐 AI MathID: distributions

Common Distributions

常用分布族
🎯Core Definition
Common distribution families with parameter-mean-variance table: ① Normal N(μ,σ2)\mathcal{N}(\mu,\sigma^2): pdf f(x)=12πσ2e(xμ)22σ2f(x) = \frac{1}{\sqrt{2\pi\sigma^2}}e^{-\frac{(x-\mu)^2}{2\sigma^2}}, mean μ\mu, variance σ2\sigma^2;② Bernoulli Bern(p)\text{Bern}(p): P(X=1)=pP(X=1) = p, mean pp, variance p(1p)p(1-p);③ Binomial Bin(n,p)\text{Bin}(n,p): P(X=k)=(nk)pk(1p)nkP(X=k) = \binom{n}{k}p^k(1-p)^{n-k}, mean npnp, variance np(1p)np(1-p);④ Poisson Poisson(λ)\text{Poisson}(\lambda): P(X=k)=λkeλk!P(X=k) = \frac{\lambda^k e^{-\lambda}}{k!}, mean λ\lambda, variance λ\lambda;⑤ Exponential Exp(λ)\text{Exp}(\lambda): pdf f(x)=λeλxf(x) = \lambda e^{-\lambda x}, mean 1/λ1/\lambda, variance 1/λ21/\lambda^2.
💡Use Cases
pick the likelihood and output layer from the data generating process — Bernoulli (cross-entropy) for binary classification, Normal (MSE) for regression, Poisson for counts, Exponential for waiting times; interviews often open with "choose a distribution for this data and write the likelihood".
Key Problems Solved
a mismatched distribution assumption systematically corrupts likelihoods and variance estimates — Poisson requires mean = variance, so over-dispersed count data needs the negative binomial; the memoryless Exponential is the right model for waiting times without decay memory. Three relations form the skeleton: Binomial is a sum of nn independent Bernoullis, Poisson is its nn \to \infty, p0p \to 0, np=λnp = \lambda limit, and Normal is the large-nn limit of both (CLT).
🎯5 High-Frequency Exam Points
1
Write the parameters, mean and variance of Normal, Bernoulli, Binomial, Poisson and Exponential?
2
Relations among Binomial, Poisson and Normal (limits and approximations)?
3
What is the memoryless property of the Exponential? How does it model waiting times?
4
Why Bernoulli (cross-entropy) for classification and Normal (MSE) for regression — from the likelihood perspective?
5
Poisson has mean = variance; what do you do with over-dispersed count data?
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "Common Distributions"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardProbability Axioms & BayesNext CardEntropy, KL & Cross-Entropy

🔗 More AI Math Knowledge Cards

Adam/AdamW MathBayesian InferenceBias-Variance DecompositionBootstrap