Sufficient Statistics
A summary of the data that captures everything the data can say about an unknown parameter. Once you have it, the individual observations are redundant, you can throw the raw numbers away and lose nothing.
Prerequisites: Maximum Likelihood Estimation (MLE)
Imagine you flipped a coin 1,000 times to estimate how biased it is. Do you need the full sequence, heads, heads, tails, heads, tails, tails... to figure out the bias? No. All you need is the count of heads. The exact order the flips came in tells you nothing extra about the coin. That count is a sufficient statistic: a compression of the raw data that keeps every last bit of information about the thing you're estimating, and discards only the noise.
This is a surprisingly deep idea. It says that for many models, a mountain of data collapses to one or two numbers with zero loss, as far as the unknown parameter is concerned. Knowing which summary is sufficient tells you exactly what to store, what to compute, and why certain estimators are the best possible.
The definition
A statistic , some function of the data , is sufficient for a parameter if the conditional distribution of the data given no longer depends on :
Read it as: once you're told the value of the summary , the leftover detail in the raw data is pure randomness, it carries no further clue about . Everything the sample could ever tell you about the parameter has already been squeezed into .
The easy way to find one: the factorization theorem
Checking that definition directly is painful. In practice you use the factorization theorem: is sufficient for if the likelihood splits into a part that touches only through , times a part that doesn't involve at all:
The first factor is where and the data meet, and they only meet through . The second factor depends on the raw data but not on , so it's irrelevant to inference. If you can write the likelihood this way, is sufficient. That's the whole trick.
A statistic is sufficient if the raw data, given the summary, no longer depend on the parameter. Practically: if the likelihood factors as , then holds all the information, and you can discard the rest.
Worked example: the Poisson total
You count events over periods, , each Poisson with unknown rate . The joint likelihood is
The parameter only ever touches the data through , the total count. The leftover factor depends on the individual numbers but not on . So the total is sufficient. Concretely: if you observe events over days and someone tells you only that events happened in total, you can estimate just as precisely as if you had the full day-by-day breakdown. The estimate per day uses the data through the sufficient statistic and nothing more.
Notice the pattern: the sufficient statistic is exactly what the MLE and the method of moments both depend on. That's not a coincidence, good estimators are always functions of the sufficient statistic.
A quick sanity check: your estimator should only touch the data through the sufficient statistic. If it uses some other quirk of the raw sample, it's either wasting information or chasing noise.
Why practitioners care
- Compression without loss. A sufficient statistic is the theoretically justified way to summarise data. For a Gaussian sample, the sufficient statistic is just the pair (sample mean, sample sum of squares), two numbers replace the whole dataset for inference about and .
- It's where the best estimators live. The Rao-Blackwell theorem says: take any estimator, condition it on a sufficient statistic, and you get one at least as good (lower variance). Combined with the The Cramér-Rao Bound, this is how you prove an estimator is optimal, efficient estimators are functions of a complete sufficient statistic.
- It flags the natural parameters. For the whole exponential family (normal, Poisson, exponential, binomial, gamma), the sufficient statistics fall out mechanically from the likelihood, telling you exactly which sample quantities matter.
Where the idea has limits
- It's model-specific. A statistic sufficient under one model can throw away crucial information under another. The sample total is sufficient for a Poisson rate but useless for detecting whether the data are actually Poisson, order and spacing (which sufficiency discards) are exactly what you'd test for overdispersion or clustering.
- Fat tails and misspecification. Sufficiency assumes you trust the model. In markets, the "discarded" detail, extreme observations, time ordering, is often the most important thing. Sufficiency tells you what's redundant if the model is right, which in finance is a big if.
- The whole sample is always sufficient. Trivially, keeping all the data loses nothing. The art is finding a low-dimensional sufficient statistic, a minimal one, that genuinely compresses.
The mental model to keep: sufficiency separates signal from noise inside a dataset. It answers "what do I actually need to remember?" and it's the backbone of why maximum likelihood, and the efficiency benchmark in Fisher Information and the The Cramér-Rao Bound, all point at the same handful of summary numbers.
Related concepts
Practice in interviews
Further reading
- Casella & Berger, Statistical Inference (Ch. 6)
- Lehmann & Casella, Theory of Point Estimation
- Wasserman, All of Statistics (Ch. 9)