Maximum Entropy Distributions
A recipe for picking a distribution when you only know a few facts about the data — the normal, exponential and uniform distributions all turn out to be the "least assuming" choice given a handful of constraints.
Prerequisites: Entropy and Information, Expectation, Variance & Moments
You're told a stock's daily return has mean 0 percent and standard deviation 1.5 percent, and nothing else. Infinitely many distributions share exactly that mean and variance — a spiky one, a lopsided one, one with two separate humps. Which do you pick? Picking any of them beyond the two facts you were actually given means smuggling in an assumption you have no evidence for. Maximum entropy is the rule for refusing to smuggle anything in.
The analogy: don't claim to know more than you do
Entropy measures how "spread out" or unpredictable a distribution is — a spike at one value has zero entropy (fully predictable), a wide, flat shape has high entropy (maximally unpredictable). If you know only a few summary facts about a random quantity, choosing a distribution that is more concentrated than those facts force is choosing to believe extra things you weren't told. The maximum entropy distribution is the one with the highest entropy — the least concentrated, most honestly noncommittal shape — among all distributions consistent with the facts you actually have.
Writing it down
Let denote entropy, defined for a density as
In words: entropy weights each possible outcome by how surprising it is (the part) and averages that surprise over the distribution itself. Given a set of constraints — "the mean is ", "the variance is ", " is always positive" — the maximum entropy distribution is the that makes as large as possible while still satisfying every constraint exactly.
The remarkable part is that this abstract optimization has closed-form, familiar answers:
| what you know | maximum entropy answer |
|---|---|
| support is , nothing else | uniform on |
| support is , mean is | exponential with rate |
| support is , mean , variance | normal |
| support is , mean is | Poisson with rate |
Read the third row again: it is the actual justification for using the normal distribution whenever you only trust a mean and a variance. It is not that returns are "naturally" bell-shaped — it's that the bell shape is the most agnostic choice available once those two numbers are fixed, and any other shape sneaks in unjustified structure.
Drag the mean and standard deviation above. Every curve you can produce this way has the same property: among all shapes sharing that particular mean and variance, this bell curve is the one adding the least extra information beyond those two numbers.
Worked example 1: mean known, nothing else
You're told a wait time between trade fills is always positive and averages 2 seconds. Solving the constrained optimization (Lagrange multipliers on and ) gives with . Check it satisfies the constraint: . Correct. The exponential distribution isn't chosen because fill times are "naturally memoryless" — it's the least-assuming shape consistent with "positive, averages 2 seconds."
Worked example 2: mean and variance both known
A risk model is told a factor return has mean 0 and variance 4 (standard deviation 2), no other information. Maximizing entropy subject to both constraints, using Lagrange multipliers on , , , yields — a Gaussian shape by construction, and solving for the multiplier that matches variance 4 gives exactly . Plug in (one standard deviation out): . That single density value is the maximum-entropy model's best honest guess at how likely a return near +2 is, given only the two moments it was handed.
What this means in practice
- Risk models default to normal for exactly this reason: given only a mean and variance estimate, assuming normality is the most defensible choice, not the most realistic one — real returns have fatter tails, which means more information (skew, kurtosis, or the full historical distribution) is available and should be used instead of defaulting blindly.
- Bayesian priors are often built by maximum entropy: pick the least informative prior consistent with known constraints (support, mean), so the data — not the prior — does the work of updating your beliefs.
- Model risk shows up when someone assumes a distribution shape more specific than their actual information justifies, then reports false confidence from that extra, unearned structure.
Given only a handful of summary facts, the maximum entropy distribution is the most honest one to assume — the shape that adds no information beyond what you were actually given. The normal distribution is the maximum-entropy answer for "known mean and variance," which is the real reason it appears so often, not because markets are naturally bell-shaped.
The trap is running this backwards: fitting a normal distribution to data, then treating skew or fat tails in the actual data as a defect to be smoothed away. If the real data has visible skew, that skew is information you have and the normal distribution was discarding — the maximum entropy principle says to build it into the model, not to force the data to look like the least-informed guess.
Related concepts
Practice in interviews
Further reading
- Jaynes, Information Theory and Statistical Mechanics (1957)
- Cover & Thomas, Elements of Information Theory (ch. 12)