Skip to content
Part IA Easter Term

Introduction to Estimators

From Theory to Data

Probability: given distribution, compute probabilities.

Statistics: given data, infer distribution.

Estimation is statistical inference: using data to estimate unknown parameters.

Estimators

An estimator θ^\hat{\theta} is a function of the data used to estimate an unknown parameter θ\theta.

The estimate is the value computed from actual data.

Example: Estimating Population Mean

Parameter: μ\mu (unknown population mean)

Data: X1,,XnX_1, \ldots, X_n (random sample)

Estimator: μ^=Xˉ=1ni=1nXi\hat{\mu} = \bar{X} = \frac{1}{n}\sum_{i=1}^n X_i

Estimate: 42.3 (actual value from data)

Properties of Good Estimators

Unbiasedness

θ^\hat{\theta} is unbiased if E[θ^]=θE[\hat{\theta}] = \theta.

The expected value of the estimator equals the true parameter.

Low Variance

Var(θ^)\text{Var}(\hat{\theta}) should be small.

An estimator with low variance concentrates near its mean.

Consistency

θ^\hat{\theta} is consistent if θ^Pθ\hat{\theta} \xrightarrow{P} \theta as nn \to \infty.

With more data, the estimator converges to the truth.

Example: Sample Mean

Xˉ\bar{X} as estimator for μ\mu:

PropertyStatus
UnbiasedYes: E[Xˉ]=μE[\bar{X}] = \mu
Varianceσ2/n\sigma^2/n
ConsistentYes (by WLLN)

Example: Sample Variance

Two versions:

Sn2=1ni=1n(XiXˉ)2(biased)S_n^2 = \frac{1}{n}\sum_{i=1}^n(X_i - \bar{X})^2 \quad \text{(biased)}

S2=1n1i=1n(XiXˉ)2(unbiased)S^2 = \frac{1}{n-1}\sum_{i=1}^n(X_i - \bar{X})^2 \quad \text{(unbiased)}

Dividing by n1n-1 corrects for estimating μ\mu with Xˉ\bar{X}.

Physical Analogy

Estimator = Measuring instrument Parameter = True value Estimate = Measurement Sampling variation = Measurement error

Measurement=True value+Error\text{Measurement} = \text{True value} + \text{Error}

Point vs Interval Estimation

  • Point estimate: Single value (e.g., Xˉ=42.3\bar{X} = 42.3)
  • Interval estimate: Range (e.g., 95% CI: (40.1,44.5)(40.1, 44.5))

Interval estimates convey uncertainty.

Method of Moments

Match sample moments to population moments:

E[X]=XˉE[X] = \bar{X} E[X2]=1nXi2E[X^2] = \frac{1}{n}\sum X_i^2

Solve for parameters.

Maximum Likelihood

Find parameter value maximising probability of observed data.

θ^MLE=argmaxθL(θ)=argmaxθi=1nf(Xi;θ)\hat{\theta}_{MLE} = \arg\max_\theta L(\theta) = \arg\max_\theta \prod_{i=1}^n f(X_i; \theta)

Summary

ConceptDefinition
EstimatorFunction of data to estimate parameter
EstimateValue computed from actual data
UnbiasedE[θ^]=θE[\hat{\theta}] = \theta
Consistentθ^θ\hat{\theta} \to \theta as nn \to \infty