From sample to parameter estimate
An estimator is a statistic used to estimate an unknown parameter. In Sections 12–13, the central examples are Poisson and Exponential models, where the sample mean appears repeatedly as MoM, MLE, and often as a limit of Bayesian estimators.
MoM and MLE
| Method | Main idea | Typical equation |
|---|---|---|
| Method of Moments | Match population moments to sample moments | $E_\theta[X]=\bar X$ |
| Maximum Likelihood | Choose the parameter that makes observed data most likely | $\frac{d}{d\theta}\ell(\theta)=0$ |
| Bayes estimator | Combine prior and likelihood, then estimate from posterior | $E[\theta\mid X]$ under squared error loss |
Estimator formula finder
Why the sample mean appears so often
The sample mean is the empirical version of the first moment. If the parameter is itself the mean, MoM immediately gives the sample mean. MLE often gives the same estimator because the likelihood depends on the data through $\sum X_i$.
$X_i\sim\mathrm{Poisson}(\lambda)$
For Poisson data, $E[X]=\lambda$ and $\operatorname{Var}(X)=\lambda$. Both method of moments and maximum likelihood give
Poisson likelihood curve
The curve is the relative likelihood $L(\lambda)/\max L(\lambda)$. The peak occurs at $\bar X$.
$Y_i\sim\mathrm{Exp}(\theta)$ with mean $\theta$
Using the scale/mean parameterization, $E[Y]=\theta$ and $\operatorname{Var}(Y)=\theta^2$. Both MoM and MLE give
Exponential likelihood curve
For $L(\theta)=\theta^{-n}\exp(-\sum Y_i/\theta)$, the likelihood peaks at $\hat\theta=\bar Y$.
Bias, variance, MSE, and consistency
An estimator is unbiased if $E[\widehat\theta]=\theta$. It is consistent if it converges to the true parameter as $n$ grows. Its MSE combines variance and bias.
Sampling distribution simulation
As $n$ grows, the estimator becomes more concentrated around the true parameter.
Posterior mean under squared error loss
In Bayesian estimation, parameters are treated as unknown quantities with a prior distribution. After observing data, the posterior combines prior and likelihood.
| Model | Prior | Posterior mean |
|---|---|---|
| $X_i\sim\mathrm{Poisson}(\lambda)$ | $\lambda\sim\mathrm{Gamma}(\alpha,\beta)$ rate form | $\dfrac{\alpha+\sum X_i}{\beta+n}$ |
| $Y_i\sim\mathrm{Exp}(\theta)$ mean parameter | $\theta\sim\mathrm{InvGamma}(\alpha,\beta)$ | $\dfrac{\beta+\sum Y_i}{\alpha+n-1}$ |
Poisson Gamma-prior explorer
Best possible variance for unbiased estimators
For unbiased estimators under regularity conditions, the variance cannot be smaller than the reciprocal Fisher information.
| Model | $I_1$ | CRLB | Estimator variance |
|---|---|---|---|
| Poisson$(\lambda)$ | $1/\lambda$ | $\lambda/n$ | $\operatorname{Var}(\bar X)=\lambda/n$ |
| Exponential mean $\theta$ | $1/\theta^2$ | $\theta^2/n$ | $\operatorname{Var}(\bar Y)=\theta^2/n$ |
Efficiency checker
Self-check questions
Q1
For $X_i\sim\mathrm{Poisson}(\lambda)$, what is the MLE of $\lambda$?
Q2
For $Y_i\sim\mathrm{Exp}(\theta)$ with mean $\theta$, is $\bar Y$ unbiased?
Q3
Under squared error loss, what is the Bayesian point estimator?