The Rao-Blackwell Theorem
A recipe for taking any unbiased estimator and mechanically improving it — averaging it against a sufficient statistic can only shrink its variance, never grow it, and the guarantee costs you nothing.
Prerequisites: Sufficient Statistics, Standard Deviation
Suppose you have a perfectly valid, unbiased estimator of some quantity — it gets the right answer on average — but it's clumsy, throwing away useful structure in the data. Is there a mechanical way to make it better, without inventing a cleverer estimator from scratch? The Rao-Blackwell theorem says yes, and gives you the recipe: condition your estimator on a sufficient statistic, and the result is provably at least as good, usually strictly better, at no extra cost in bias.
An analogy: replacing one juror's guess with the jury's average
Imagine one juror is asked to guess a defendant's age just from a photo, while the rest of the courtroom has heard hours of relevant testimony. That one juror's guess, on its own, is noisy — an honest attempt, but wasteful, since it ignores everything the courtroom collectively knows. Now instead ask: given everything the full courtroom knows (the "sufficient statistic" — the complete relevant information), what is the average guess a juror in this juror's position would make? That averaged, better-informed guess is still centered on the same truth as the original guess, but it varies far less from juror to juror, because it has folded in strictly more information. Rao-Blackwell formalizes exactly this move: replace a noisy, information-wasting estimator with its average conditional on everything relevant that the data has to say.
The statement, one symbol at a time
Let be any unbiased estimator of a parameter , and let be a sufficient statistic for — meaning captures everything the data has to say about , so nothing else in the data adds information once you know . Define the new estimator
Read this as: "take the average value would have, conditional on knowing " — this is a genuine, computable estimator in its own right, since it's built purely from (using the tower property, 's own randomness averages out, leaving a function of alone). The theorem guarantees two things: is still unbiased for , exactly like the original, and
In plain English: conditioning on a sufficient statistic never makes your estimator worse, and typically makes it strictly better — you get the same unbiasedness with equal or lower variance, purely as a mechanical consequence of using the sufficient statistic instead of ignoring it.
Two unbiased estimators can be pictured as two bell curves centered on the same true value but with different widths. Rao-Blackwell is a guarantee about which curve you end up with: starting from the wider one, conditioning on a sufficient statistic can only move you to the same width or narrower — never wider — while the center stays exactly put.
Averaging in more information generally tightens an estimate, as the running-average explorer above shows for growing — conditioning on a sufficient statistic is a different mechanism for the same kind of tightening: instead of adding more data, it wrings out the wasted variance already sitting inside the single estimator you started with.
Take any unbiased estimator, average it conditional on a sufficient statistic, and you get a new unbiased estimator with variance no larger than the original — often strictly smaller. This is a free variance-reduction move: it costs no bias and requires no new data.
Worked example 1: improving a wasteful estimator of a Bernoulli mean
You observe coin flips and want to estimate the heads-probability . A deliberately wasteful (but unbiased) estimator: just use the first flip, — it's unbiased since , but it throws away flips 2 and 3 entirely.
The sufficient statistic for from Bernoulli trials is , the total number of heads. Rao-Blackwell says compute . By symmetry among the three flips — given that exactly of the 3 flips were heads, each individual flip is equally likely to be one of the heads — .
So , the sample mean. Concretely: if the observed flips are (2 heads, ), the original wasteful estimator gives . The Rao-Blackwellized estimator gives — using all three flips instead of one, and, across repeated experiments, provably lower variance than the original, single-flip estimator, exactly as the theorem promises.
Worked example 2: comparing the variances directly
Continue the same setup with true . The original estimator has variance .
The Rao-Blackwellized estimator (the sample mean of 3 flips) has variance .
versus : the improved estimator's variance is exactly one-third of the original's — because averaging 3 roughly-independent pieces of information cuts variance by a factor of 3, precisely the gain the theorem guarantees you cannot fail to get (and here, using all the data instead of one-third of it, you get the maximum possible gain).
What this means in practice
- Rao-Blackwell is rarely applied by name in day-to-day quant work, but its logic explains why "use all your data, not a subsample" is not just intuition — it's a proven variance-reduction result whenever a genuine sufficient statistic exists.
- It pairs naturally with the Cramér-Rao bound: repeatedly Rao-Blackwellizing (or starting from an already-sufficient-based estimator) is one route toward reaching the theoretical minimum-variance estimator the Cramér-Rao bound describes, and for exponential family models the two results interlock cleanly.
- In Monte Carlo simulation, "Rao-Blackwellization" is a standard variance-reduction technique — replacing part of a simulated estimate with its known conditional expectation wherever that expectation can be computed in closed form, cutting simulation noise for free.
The improvement is not automatic in magnitude — Rao-Blackwell guarantees the variance can only go down or stay the same, never up, but it says nothing about how much improvement to expect. If your original estimator already only depends on the sufficient statistic (as the sample mean already does for a normal mean, say), Rao-Blackwellizing it changes nothing — exactly, and you get zero improvement, correctly, because there was no wasted information left to recover.
Related concepts
Practice in interviews
Further reading
- Casella & Berger, Statistical Inference, sec. 7.3
- Lehmann & Casella, Theory of Point Estimation, ch. 1