Back to AI Math Mind Map
中文·English
📐 AI MathID: estimation

Point Estimation

点估计 MLE/矩估计
🎯Core Definition
Point estimation maps samples to a single parameter value: Maximum Likelihood Estimation (MLE) picks the parameter that maximizes the probability of the observed data, θ^=argmaxθi=1np(xiθ)\hat{\theta} = \arg\max_{\theta} \prod_{i=1}^{n} p(x_i \mid \theta); since log is monotonic, one instead maximizes the log-likelihood (θ)=ilogp(xiθ)\ell(\theta) = \sum_i \log p(x_i \mid \theta) and sets its derivative to zero.
💡Use Cases
the entry point for fitting nearly every parametric model — normal parameters, logistic regression, the M-step of EM; interviews typically ask for the normal-mean MLE derivation, Fisher information & CRLB, and MLE vs method of moments.
Key Problems Solved
unlike the method of moments, which matches only the first kk sample moments (biased in small samples, possibly inefficient), MLE is asymptotically unbiased, consistent and efficient under regularity conditions, achieving the information-theoretic lower bound:
📌Overview
Var(θ^)1I(θ)\text{Var}(\hat{\theta}) \ge \frac{1}{I(\theta)} (Cramér–Rao bound), with Fisher information I(θ)=E[2θ2logL(θ)]I(\theta) = -\mathbb{E}[\frac{\partial^2}{\partial \theta^2} \log L(\theta)]; the price is finite-sample bias (e.g. σ^2\hat{\sigma}^2 needs the n1n-1 correction) and numerical optimization.
🎯5 High-Frequency Exam Points
1
Write the MLE definition and derive the MLE of a normal mean.
2
Why take the log-likelihood for MLE? Does it change the optimum?
3
Meaning of the Cramér–Rao bound and the definition of Fisher information?
4
MLE vs method of moments: differences, pros and cons?
5
Asymptotic properties of MLE (consistency, asymptotic normality, efficiency)?
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "Point Estimation"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardCentral Limit TheoremNext CardHypothesis Testing

🔗 More AI Math Knowledge Cards

Adam/AdamW MathBayesian InferenceBias-Variance DecompositionBootstrap