Idea
Match sample moments with population moments to estimate parameters.
Moments
- First moment: E[X] (mean)
- Second moment: E[X2]
- kth moment: E[Xk]
Sample Moments
- Xˉ=n1∑i=1nXi (first sample moment)
- n1∑i=1nXi2 (second sample moment)
Method
- Express population moments in terms of parameters
- Solve by matching with sample moments
Example: Normal Distribution
X∼N(μ,σ2). Parameters: μ,σ.
First moment: E[X]=μ=Xˉ
Second moment: E[X2]=μ2+σ2=n1∑Xi2
Solution:
- μ^=Xˉ
- σ^2=n1∑Xi2−Xˉ2=Sn2
Example: Exponential
X∼Exp(λ). Parameter: λ.
E[X]=λ1=Xˉ
λ^=Xˉ1=∑Xin
X∼Unif[0,θ]. Parameter: θ.
E[X]=2θ=Xˉ
θ^=2Xˉ
Properties
- Simple to compute
- Consistent (moment estimators converge)
- Not always efficient
- May not work if moments don’t exist
Summary
| Step | Action |
|---|
| 1 | Write population moments in parameters |
| 2 | Equate to sample moments |
| 3 | Solve for parameters |