Mathematical statistics uses estimators to turn sample data into informed guesses about unknown population parameters. This cheat sheet summarizes the main properties used to judge estimators, including bias, variance, mean squared error, consistency, and efficiency. It is useful for comparing methods and understanding why some estimators are preferred in repeated sampling.
Maximum likelihood estimation chooses the parameter value that makes the observed data most probable under a statistical model. The core workflow is to write the likelihood , take the log-likelihood , differentiate, and solve for the maximizing parameter. Important checks include parameter constraints, second derivative tests, and whether the likelihood maximum occurs at a boundary.
Key Facts
- An estimator is a statistic used to estimate an unknown parameter from sample data.
- The bias of an estimator is , so the estimator is unbiased when .
- The variance of an estimator is , which measures sampling variability.
- The mean squared error is .
- An estimator is consistent for if as .
- For independent observations , the likelihood is .
- The log-likelihood is , and it has the same maximizer as .
- A maximum likelihood estimator satisfies at an interior maximum and should also satisfy model constraints such as .
Vocabulary
- Estimator
- A statistic computed from sample data to estimate an unknown population parameter .
- Estimate
- The numerical value of an estimator after actual sample data have been substituted.
- Bias
- Bias is the difference between an estimator's expected value and the true parameter.
- Consistency
- Consistency means an estimator gets arbitrarily close to in probability as becomes large.
- Likelihood
- The likelihood treats the observed data as fixed and views the parameter as the quantity being compared.
- Maximum Likelihood Estimator
- The maximum likelihood estimator is the parameter value that maximizes or equivalently .
Common Mistakes to Avoid
- Confusing an estimator with an estimate is wrong because is a random variable before data are observed, while the estimate is one realized number.
- Assuming unbiased means best is wrong because an estimator with small bias can have much smaller variance and lower .
- Maximizing without checking parameter constraints is wrong because the solution must lie in the allowed parameter space, such as or .
- Forgetting the product in the likelihood for independent samples is wrong because , not a sum of densities or probabilities.
- Stopping after solving is wrong because critical points can be minima, saddle points, or invalid boundary points rather than maxima.
Practice Questions
- 1 Let be a random sample with and . Show that is unbiased for and find .
- 2 For data from a Bernoulli distribution with parameter , write and find the maximum likelihood estimator .
- 3 Suppose are exponential with density for and . Find the log-likelihood and the MLE .
- 4 Explain why a biased estimator might still be preferred over an unbiased estimator when comparing .