Week 8.1: Properties of Estimators
582 words
3 min read
Visual companion
Python
Type and operator map
Python Week 1: the first filter for runtime behavior
View
Revision summary
What this note is really saying
Short form
# Week 8.1: Properties of Estimators > **Prerequisites:** MME ([Week 7.1: Point Estimation — Method of Moments (MME)](/notes/01-foundation-bsma1004-stats-2-week07-20-point-estimation-mme)), MLE ([Week 7.2: Maximum Likelihood Estimation (MLE)](/notes/01-foundation-bsma1004-stats-2-week07-21-point-estimation-mle)) > *...

Week 8.1: Properties of Estimators
Prerequisites: MME (Week 7.1: Point Estimation — Method of Moments (MME)), MLE (Week 7.2: Maximum Likelihood Estimation (MLE)) Cross-links: BSMA3012 (Linear Stat Models) — estimator evaluation Core question: What makes a "good" estimator?
1. Intuition: Evaluating Our Guesses
An estimator θ^n is a function of the sample — a random variable. We evaluate estimators by three criteria:
- Bias: Is it correct on average? Bias(θ^)=E[θ^]−θ.
- Variance: How much does it fluctuate? Var(θ^).
- Consistency: Does it converge to the truth as n→∞?
2. Bias and Unbiasedness
Definition (Bias) Bias(θ^)=E[θ^]−θ. θ^ is unbiased if Bias(θ^)=0, i.e., E[θ^]=θ. Examples:
- Xˉ is unbiased for μ: E[Xˉ]=μ.
- S2=n−11∑(Xi−Xˉ)2 is unbiased for σ2.
- σ^MLE2=n1∑(Xi−Xˉ)2 is biased: E[σ^MLE2]=nn−1σ2. Bias correction: Multiply MLE variance by n−1n to get unbiased estimate.
3. Variance and MSE
>MSE(θ^)=E[(θ^−θ)2]=Var(θ^)+[Bias(θ^)]2.>Definition (Mean Squared Error)
Trade-off: Sometimes a biased estimator with lower variance can have smaller MSE than an unbiased estimator with high variance.
4. Consistency
Definition (Consistency) θ^n is consistent if θ^npθ as n→∞ (converges in probability). Sufficient condition: If Bias(θ^n)→0 and Var(θ^n)→0, then θ^n is consistent (by Chebyshev). Examples:
- Xˉ is consistent for μ (by LLN).
- MLEs are generally consistent under regularity conditions.
5. Efficiency
Var(θ^)≥n⋅I(θ)1,Definition (Efficiency) θ^1 is more efficient than θ^2 if Var(θ^1)<Var(θ^2) (both unbiased). Cramér-Rao Lower Bound (CRLB): For unbiased estimators:
where I(θ)=E[(∂θ∂lnf(X;θ))2] is the Fisher Information.
An estimator achieving the CRLB is called efficient (MVUE — Minimum Variance Unbiased Estimator).
6. Summary Table
| Property | Definition | Why It Matters |
|---|---|---|
| Unbiasedness | E[θ^]=θ | No systematic error |
| Consistency | θ^npθ | Improves with more data |
| Efficiency | Minimum variance among unbiased | Most precise |
| MSE | Var+Bias2 | Overall accuracy |
7. Practice Questions
Q1 (Easy)
Is S2=n−11∑(Xi−Xˉ)2 unbiased for σ2?
Full SolutionYes. E[S2]=σ2. This is why we divide by n−1 — to correct the bias of the MLE.
Q2 (Medium)
Show that Xˉ is consistent for μ when σ2<∞.
Full SolutionE[Xˉ]=μ (unbiased), Var(Xˉ)=σ2/n→0 as n→∞.By Chebyshev: P(∣Xˉ−μ∣≥ϵ)≤nϵ2σ2→0. So Xˉpμ.
Q3 (Hard)
For Xi∼Uniform(0,θ), show that the MLE θ^=X(n) is biased. Find an unbiased version.
Full SolutionCDF of max: FX(n)(x)=(x/θ)n, 0≤x≤θ.PDF: fX(n)(x)=nxn−1/θn.E[X(n)]=∫0θx⋅nxn−1/θndx=θnn⋅n+1θn+1=n+1nθ.So Bias=n+1nθ−θ=−n+1θ (negatively biased).Unbiased estimator: θ^unbiased=nn+1X(n).
Next topic: Week 8.2: Confidence Intervals — Confidence Intervals. Join Discord PreviousWeek 7.2: Maximum Likelihood Estimation (MLE)NextWeek 8.2: Confidence Intervals