Bias, Variance, and the Quality of Estimators
What makes one estimator better than another, the bias–variance decomposition of MSE, consistency, efficiency, and the Cramér–Rao bound that caps how good any unbiased estimator can be.
Prerequisites: Expectation, Variance & Moments, The Law of Large Numbers
An estimator is a recipe, a function of the sample , that produces a guess of an unknown parameter . Because the sample is random, the estimator is a random variable with its own distribution, the sampling distribution. Almost every argument about whether a volatility estimate, a beta, or a Sharpe ratio is "good" is really an argument about the shape of that sampling distribution, and two numbers summarize most of it: how far off it is on average (bias) and how much it wobbles (variance).
Bias, variance, and the MSE decomposition
Define the bias as the average error and the variance as the spread:
The natural scalar measure of quality is mean squared error, . Add and subtract inside the square:
Expanding, the cross term vanishes because , leaving the bias–variance decomposition:
This is the single most important identity in estimation. It says an unbiased estimator is not automatically the best one: you can often trade a little bias for a large drop in variance and win on MSE. That trade is the entire justification for shrinkage, ridge/LASSO, and Bayesian priors. See Ridge and LASSO Regularization and Shrinkage.
Consistency
Unbiasedness is a finite-sample property; consistency is the asymptotic promise that more data eventually pins down the truth. Formally is consistent if it converges in probability, , i.e. for every , . A clean sufficient condition follows straight from the decomposition: if both and , then , which forces convergence in probability (via Chebyshev). An estimator can be biased in every finite sample yet consistent (the MLE of a variance is the standard example), and, more dangerously, it can be unbiased yet inconsistent if its variance never shrinks.
Efficiency and the Cramér–Rao bound
Among unbiased estimators we prefer the one with the smallest variance, the efficient one. There is a hard floor on how small that variance can be. For a model with density and log-likelihood , define the Fisher information
The Cramér–Rao inequality states that any unbiased estimator satisfies
where is the information in one observation. An unbiased estimator that attains this bound is called efficient. The bound is what makes maximum likelihood special: the MLE is asymptotically efficient, reaching the Cramér–Rao floor as (see Maximum Likelihood Estimation (MLE)). The bound also explains why fat tails hurt, heavier-tailed models carry less Fisher information per observation about location, so the same precision needs far more data.
Worked example: the two variance estimators
Take i.i.d. with mean and variance . Two competing estimators of are
The version is unbiased, ; the divisor is because estimating uses up one degree of freedom. The MLE version has bias , it systematically underestimates. Yet under normality the MLE has smaller variance, and if you compute MSE the minimizer over divisors is actually , not : the unbiased estimator is not the MSE-optimal one. This is the bias–variance tradeoff in its most concrete, examinable form, being right on average is not the same as being close on average.
Failure modes in financial data
- The mean is nearly unestimable. For returns the standard error of the sample mean is . With equity vol around 20% annually, pinning the mean to within 1% needs years of data. Drift estimates are almost all variance, this is why The Kelly Criterion sizing on a point estimate of is so fragile.
- Autocorrelation breaks the variance formulas. The variance of the sample mean assumes independence. With positively autocorrelated returns (or overlapping windows) the true variance is inflated by a factor like , so naive standard errors are too small and estimators look more precise than they are. See Autocorrelation and Serial Correlation.
- Fat tails inflate the variance of variance. The sampling variance of depends on the fourth moment (kurtosis). Financial returns are leptokurtic, so volatility and correlation estimates are noisier than Gaussian intuition suggests, and a single crash day can dominate the estimate.
- Non-stationarity kills consistency. Consistency assumes the parameter is fixed. If (a beta, a vol, an edge) drifts over the sample, adding older data adds bias, not information, more data can make you worse. See Stationarity and Regime Detection.
In interviews
Be able to write and derive it by adding and subtracting (the cross term vanishing is the whole trick). Expect "why ?", answer with the lost degree of freedom, and score bonus points by noting the unbiased divisor is not the MSE-minimizing one. Know the definitions of consistency versus unbiasedness (finite-sample vs asymptotic) and be ready to state the Cramér–Rao bound and why it makes MLE the benchmark. The sharpest follow-up is "give me a biased estimator you'd prefer to an unbiased one", the honest answer is a shrinkage or ridge estimator, justified directly by the decomposition above.
Related concepts
Practice in interviews
Further reading
- Casella & Berger, Statistical Inference (Ch. 7)
- Hayashi, Econometrics (Ch. 1–2)
- Hastie, Tibshirani & Friedman, The Elements of Statistical Learning (Ch. 7)