Definition
The mean squared error (MSE) of an estimator θ^ for parameter θ is:
MSE(θ^)=E[(θ^−θ)2]
Bias-Variance Decomposition
MSE(θ^)=Var(θ^)+Bias(θ^)2
Proof:
E[(θ^−θ)2]=E[((θ^−E[θ^])+(E[θ^]−θ))2]
=E[(θ^−E[θ^])2]+(E[θ^]−θ)2+2E[(θ^−E[θ^])(E[θ^]−θ)]
The cross-term vanishes: the second bracket is constant.
=Var(θ^)+Bias(θ^)2
Interpretation
MSE measures total error:
- Variance: Random error from sampling
- Bias2: Systematic error from estimator design
A good estimator balances both.
For Unbiased Estimators
If θ^ is unbiased (Bias=0):
MSE(θ^)=Var(θ^)
MSE equals variance.
Example: Sample Mean
Xˉ is unbiased for μ:
MSE(Xˉ)=Var(Xˉ)=nσ2
Example: Sample Variance Variants
Sn2=n1∑(Xi−Xˉ)2: biased, lower variance.
S2=n−11∑(Xi−Xˉ)2: unbiased, higher variance.
Which has lower MSE? For normal distribution, Sn2 often wins.
Root Mean Squared Error
RMSE=MSE
RMSE is in the same units as θ, making it more interpretable.
Consistent Estimators
If θ^n is consistent, then MSE(θ^n)→0 as n→∞.
Consistency requires vanishing MSE.
Optimality
Among unbiased estimators, the one with minimum variance (and hence minimum MSE) is called efficient or minimum variance unbiased estimator (MVUE).
Summary
| Quantity | Formula |
|---|
| MSE | E[(θ^−θ)2] |
| Decomposition | Var(θ^)+Bias2 |
| RMSE | MSE |