Minimax Estimation
Choosing an estimator to minimize its worst-case error across all possible true parameter values, rather than its average error under one assumed distribution.
Most estimators are judged by average performance: given a true parameter , how small is the expected squared error over repeated sampling? But that average depends on knowing (or assuming) , and an estimator that's excellent for one plausible can be terrible for another. Minimax estimation sidesteps this by asking a different question: for each candidate estimator, what is its worst-case risk over every possible true — and which estimator makes that worst case as small as possible?
Formally, for an estimator with risk (expected loss) as a function of the unknown true , the minimax estimator solves:
In plain English: look at every candidate estimator, find the worst possible true for each one, and pick the estimator whose worst case is the least bad. It's a pessimist's rule — it protects against the worst-case scenario rather than optimizing for an assumed typical one, which is valuable exactly when you have no reliable prior belief about to lean on.
Worked example. Estimating the mean of a bounded random variable, the sample mean has risk (mean squared error) that grows the same way regardless of the true mean's actual value within the bound — so its worst-case risk over the whole allowed range is no worse than its risk anywhere else, which is exactly why the sample mean is minimax for this problem: no other estimator can guarantee a better worst-case bound.
This connects directly to why regularized estimators (ridge regression, shrinkage estimators like James-Stein) get used in practice: they trade a small amount of best-case performance for a much better worst-case guarantee across the range of plausible true parameters, which is the minimax logic even when the estimator wasn't derived by explicitly solving the minimax problem.
A minimax estimator minimizes its worst-case risk across all possible true parameter values, rather than its average risk under one assumed distribution — the right criterion when you have no trustworthy prior over what the truth actually is.
Related concepts
Practice in interviews
Further reading
- Lehmann and Casella, Theory of Point Estimation, ch. 5