The Cramér-Rao Bound
A hard speed limit on estimation: no unbiased estimator can have a variance below one over the Fisher information. It tells you the best precision any method could ever achieve, and which estimators actually hit it.
Prerequisites: Fisher Information, Bias, Variance, and the Quality of Estimators
The Cramér-Rao bound is one of the most useful "you can't do better than this" results in statistics. It says that once you fix the amount of information in your data, there is a floor on how precise any unbiased estimate can be. You can invent clever new estimators all day, but none of them can beat this limit. That makes it a benchmark: if your estimator already sits on the floor, stop tinkering, you've found the best one there is.
It builds directly on Fisher Information, the number that measures how much a dataset tells you about an unknown parameter. The bound simply says: the more information, the lower the achievable error, and it makes that trade-off exact.
The bound
For any unbiased estimator of a parameter built from data points, its variance obeys
where is the total Fisher information in the sample. In plain terms: the smallest error bar you could ever hope for is one over the information. Double the information and the variance floor halves. An estimator that actually reaches this floor is called efficient, it is squeezing every last drop of precision out of the data.
No unbiased estimator can beat . The Fisher information sets a hard floor on precision, and an estimator that touches the floor is called efficient.
The efficiency scorecard
Because the bound gives a target, you can grade any estimator against it. The efficiency of is the ratio of the floor to its actual variance:
An efficiency of (or ) means the estimator is optimal. An efficiency of means it needs more data to match what the best estimator gets from the original sample. This is exactly why the maximum-likelihood estimator is the default engine of parametric statistics: under regularity conditions it becomes efficient in large samples, its variance converges to the Cramér-Rao floor .
Worked example: estimating a Poisson rate
Suppose customer orders arrive at some unknown average rate per minute, and you record counts over separate minutes, each Poisson with mean . The natural estimator is the sample mean .
The Fisher information for one Poisson observation is (the curvature of the Poisson log-likelihood), so the sample carries . The Cramér-Rao floor is therefore
Now check the estimator we actually chose. A Poisson variable has variance , so the sample mean has variance , exactly the floor. The sample mean is efficient: no unbiased method could estimate the arrival rate more precisely from this data. Concretely, if the true rate is orders per minute and you watch for minutes, the best possible variance is , a standard error of about orders per minute, and already achieves it.
Where it applies and where it doesn't
- Unbiased only. The classic bound is for unbiased estimators. Allow a little bias and you can often get a lower total error (mean-squared error) than the Cramér-Rao floor, this is exactly the trade shrinkage estimators make, accepting bias to slash variance. The bound isn't the last word on accuracy, only on unbiased precision.
- Regularity conditions. The result assumes a smooth likelihood whose support doesn't depend on . For odd cases (like estimating the upper edge of a uniform distribution, where the boundary moves with the parameter) the bound doesn't apply and estimators can be super-efficient.
- It's asymptotic for MLE. Maximum likelihood reaches the floor in large samples. In small, heavy-tailed financial samples the MLE can sit well above the floor, so don't quote the information-based standard error as gospel, bootstrap it.
The bound only constrains unbiased estimators. Accepting a little bias, as ridge regression and other shrinkage methods do, can push total error below the Cramér-Rao floor. "Efficient" means best-unbiased, not best-overall.
The interview angle
The clean statement to have ready: variance , an unbiased estimator hitting it is efficient, and the MLE achieves it asymptotically. The favourite follow-up is "can you ever beat it?", and the sharp answer is yes, by giving up unbiasedness, which reframes the whole point of shrinkage. It pairs naturally with Sufficient Statistics (efficient estimators are functions of sufficient statistics) and with Maximum Likelihood Estimation (MLE) as the method that reaches the floor.
Related concepts
Practice in interviews
Further reading
- Casella & Berger, Statistical Inference (Ch. 7)
- Lehmann & Casella, Theory of Point Estimation
- Wasserman, All of Statistics (Ch. 9)