The Exponential Family and Natural Parameters
A single mathematical template that unifies the normal, Bernoulli, Poisson, and gamma distributions among others, written in a common form that makes many statistical results provable once instead of separately for each distribution.
Prerequisites: Maximum Likelihood Estimation (MLE)
The normal, Bernoulli, Poisson, exponential, and gamma distributions look unrelated at first glance, but they're all special cases of one shared template called the exponential family, written as . Once a distribution is written this way, is called the sufficient statistic (everything the data tells you about is packed into it), is the natural parameter (a reparameterization of that makes the formula clean), and is a normalizing term ensuring the distribution integrates to one.
The payoff of writing distributions this way isn't cosmetic: a wide range of results — that the maximum likelihood estimator has a closed form in terms of the sufficient statistic, that conjugate priors exist for Bayesian updating, that generalized linear models (logistic regression, Poisson regression) all share the same fitting machinery — can be proven once for the whole exponential family instead of separately, distribution by distribution. That's precisely why logistic regression (Bernoulli) and Poisson regression share nearly identical fitting code under the hood: both are instances of a generalized linear model built on an exponential-family distribution, differing only in which member of the family and which link function connect predictors to the natural parameter.
For a quant, the practical payoff shows up whenever a model needs a distributional assumption on returns, counts of trades, or default indicators — recognizing which exponential family member fits the data means immediately inheriting a known, well-studied estimation and inference toolkit rather than building one from scratch.
The exponential family is a single algebraic template — — that the normal, Bernoulli, Poisson, and several other common distributions all fit into, with capturing all the information the data carries about the natural parameter . Writing a model this way is what lets generalized linear models like logistic and Poisson regression share one unified fitting and inference framework.
Practice in interviews
Further reading
- Wasserman, All of Statistics, ch. 9