Historical Context & Motivation
The problem of estimating unknown parameters from observed data has been central to statistics since its emergence as a formal discipline. In the late nineteenth and early twentieth centuries, practitioners relied largely on ad-hoc procedures—fitting lines by eye, choosing parameters to match tabulated frequencies, or appealing to least squares without a probabilistic model. The need for principled, general-purpose estimation strategies motivated two of the most important methodological contributions in statistical history: the method of moments and maximum likelihood estimation.
Karl Pearson sought a systematic technique to fit distributions to empirical data, while Ronald A. Fisher later argued that the likelihood function itself should serve as the foundation for inference. Their contrasting philosophies shaped the landscape of parametric estimation and continue to influence modern practice, from classical regression to Bayesian computation.
The central question both methods address is deceptively simple: given a parametric family {f(x; θ) : θ ∈ Θ} and observed data X₁, X₂, …, Xₙ, how should we choose θ̂ so that the fitted model best represents the data-generating process? The method of moments answers by matching population and sample moments, while MLE answers by finding the parameter value that makes the observed data most probable. Understanding both approaches—their derivations, properties, and trade-offs—equips the practitioner with a versatile toolkit for statistical inference.
Core Principles & Definitions
Both the method of moments and MLE belong to the broader class of point estimation procedures: they produce a single 'best guess' θ̂ for the unknown parameter vector θ. Despite sharing this goal, the two methods rest on fundamentally different principles. The method of moments exploits the algebraic relationship between parameters and population moments, whereas MLE exploits the probabilistic structure encoded in the likelihood function. The following cards distill the foundational ideas that underlie each approach.
Population vs. Sample Moments
Likelihood Function
Score Function & Fisher Information
Consistency & Efficiency
Regularity Conditions
Visual Explanation — MoM vs. MLE
The diagram below contrasts the conceptual pipelines of the method of moments and maximum likelihood estimation. On the left branch, we see how sample moments are computed directly from the data and set equal to their population counterparts, yielding a system of equations whose solution is the MoM estimator. On the right branch, the data enter the likelihood function, which is maximized over the parameter space—often via differentiation—to produce the MLE. Both pipelines begin with the same data and parametric model, but they extract information through different mechanisms.
Notice that the MoM pathway is purely algebraic once the moment equations are written down: there is no optimization problem to solve, which historically made it appealing before the advent of electronic computation. The MLE pathway, by contrast, requires maximizing a function that may not have a closed-form solution, but it compensates by using the full shape of the data-generating distribution rather than a finite number of summary statistics.
Mathematical Framework
Method of Moments — Formal Setup
Suppose X₁, …, Xₙ are i.i.d. from a distribution with density (or pmf) f(x; θ₁, …, θₚ), where p parameters are unknown. The method of moments equates the first p population moments to their sample counterparts, producing a system of p equations in p unknowns.
Central moments can be used instead of raw moments when the algebra is simpler. For instance, for a two-parameter family one commonly uses E[X] = X̄ and E[(X − μ)²] = (1/n) Σ (Xᵢ − X̄)². By the law of large numbers, m̂ₖ → μ'ₖ(θ₀) almost surely, so the MoM estimator is typically consistent provided the moment-to-parameter mapping is continuous and invertible.
Maximum Likelihood Estimation — Formal Setup
Detailed Comparison — Geometry of Likelihood
To build geometric intuition, consider a single-parameter exponential family. The log-likelihood ℓ(θ) is a concave curve whose peak identifies the MLE. The MoM estimator, by contrast, corresponds to a particular horizontal slice through a moment function. These two solutions coincide for some families (e.g., the normal distribution when parametrized by μ and σ²) but diverge for others (e.g., the gamma distribution). The diagram below illustrates a typical log-likelihood surface for a two-parameter model, showing the contours and the location of both estimators.
The gap between θ̂_MoM and θ̂_MLE reflects the fact that moments capture only limited aspects of the distribution's shape. In the normal model, the first two moments fully characterize the distribution, so both estimators coincide. In skewed or heavy-tailed families, higher moments carry additional information that MoM ignores unless one explicitly matches more moments. The asymptotic relative efficiency (ARE) of MoM relative to MLE quantifies this loss: for a Gamma(α, β) model with small α, the ARE can drop well below 1, meaning MoM requires substantially more data to achieve the same precision.
| Distribution | MoM = MLE? | ARE (MoM vs. MLE) |
|---|---|---|
| Normal(μ, σ²) | Yes (both coincide) | 1.00 |
| Exponential(λ) | Yes (both yield 1/X̄) | 1.00 |
| Gamma(α, β) | No | < 1, depends on α |
| Beta(a, b) | No | < 1, can be significantly less |
| Uniform(0, θ) | No (MLE = max Xᵢ) | Not directly comparable (non-regular) |
Worked Example — Gamma Distribution
Consider a random sample X₁, …, Xₙ drawn from a Gamma(α, β) distribution with density f(x; α, β) = [βᵅ / Γ(α)] x^(α−1) e^(−βx) for x > 0. Both α (shape) and β (rate) are unknown. We derive the MoM estimator and set up the MLE score equations.
This example highlights a common pattern: the MoM estimator is available in closed form and serves as an excellent starting value for the iterative numerical procedure required by MLE. In practice, many statistical software packages initialize MLE algorithms with MoM estimates.
Strengths, Limitations & Trade-offs
| Criterion | Method of Moments | Maximum Likelihood |
|---|---|---|
| Ease of computation | Often yields closed-form estimators; no optimization needed. | May require iterative numerical optimization (Newton–Raphson, EM). |
| Asymptotic efficiency | Generally NOT efficient; does not attain the Cramér–Rao bound. | Efficient under regularity conditions; attains the CRLB. |
| Invariance | Does not possess the invariance property in general. | Invariant: MLE of g(θ) is g(θ̂_MLE). |
| Finite-sample properties | May produce estimates outside the parameter space (e.g., negative variance). | Estimates always lie in the parameter space (if the likelihood is properly constrained). |
| Robustness | Sensitive to outliers through sample moments, especially higher-order ones. | Sensitive to model misspecification; relies on the assumed density. |
| Use as initial values | Frequently used to initialize MLE algorithms. | N/A — MLE is typically the final estimator. |
Connections to Advanced Theory
Both the method of moments and MLE serve as springboards to more sophisticated inference frameworks. Understanding their properties deeply prepares the student for advanced topics in estimation, testing, and model selection.
| Classical Method | Advanced Extension | Key Idea |
|---|---|---|
| Method of Moments | Generalized Method of Moments (GMM) | Handles overidentified models by minimizing a quadratic form in moment conditions; widely used in econometrics. |
| MLE | Quasi / Pseudo MLE | Maximizes a misspecified likelihood; consistent for certain parameters even when the full model is wrong (sandwich variance). |
| MLE | EM Algorithm | Iteratively maximizes the expected complete-data log-likelihood; essential for latent variable and mixture models. |
| MLE | Bayesian Posterior Mode (MAP) | Adding a prior π(θ) to the likelihood yields the posterior; the MAP estimator is the mode, reducing to MLE under a flat prior. |
| MLE | Likelihood Ratio Tests | The ratio of maximized likelihoods under H₀ and H₁ forms the basis of the LRT; Wilks' theorem gives the asymptotic χ² distribution. |
The trinity of asymptotic test statistics—the likelihood ratio test, the Wald test, and the score (Rao) test—are all constructed from the MLE and the score function. Each offers a different computational trade-off: the Wald test requires only the unrestricted MLE, the score test requires only the restricted MLE (under H₀), and the likelihood ratio test requires both. Similarly, GMM generalizes MoM by allowing more moment conditions than parameters and choosing an optimal weighting matrix, yielding an efficient estimator analogous to MLE within the moment-based framework. These connections underscore the enduring importance of the foundational methods studied in this lesson.
Practice Problems
Lesson Summary
The method of moments estimates parameters by equating sample moments to their population counterparts and solving the resulting system algebraically. It is computationally simple, consistent under mild conditions, and often provides excellent initial values for iterative algorithms. However, it is generally not asymptotically efficient and can yield estimates outside the parameter space. Maximum likelihood estimation maximizes the likelihood function L(θ) = ∏ f(xᵢ; θ), exploiting the full probabilistic structure of the model. Under regularity conditions, the MLE is consistent, asymptotically normal with variance equal to the inverse Fisher information, and asymptotically efficient—attaining the Cramér–Rao lower bound.
The two methods coincide for distributions whose parameters are simple functions of their first few moments (e.g., Normal, Exponential), but diverge for richer families like the Gamma or Beta. The MLE possesses the powerful invariance property and connects directly to the likelihood ratio test, the Wald test, and the score test. Extensions include the EM algorithm for latent variable models and generalized method of moments (GMM) for overidentified econometric settings. Together, MoM and MLE form the bedrock of parametric statistical inference.