Home Statistical Dictionary Maximum Likelihood Estimation

Maximum Likelihood Estimation

A general estimation method that chooses the parameter values making the observed data most probable, by maximizing the likelihood (or, equivalently, log-likelihood) function.

Estimation TheoryIntermediateFree

In Plain English

Maximum likelihood estimation asks: out of every possible value the unknown parameter could take, which one would have made the data I actually observed most likely to occur? That value is the maximum likelihood estimate, and the method underlies an enormous share of modern statistical modeling, from simple normal-distribution fitting to logistic regression to complex hierarchical models.

Definition

Maximum likelihood estimation (MLE) chooses the parameter estimate that maximizes the likelihood function, equivalently, the value that maximizes the log-likelihood, . Under standard regularity conditions, MLE produces estimators that are consistent, asymptotically normal, and asymptotically efficient (attaining the Cramer-Rao lower bound in the large-sample limit), which is why MLE serves as the default estimation method for an enormous range of parametric statistical models, from simple distribution fitting to generalized linear models to complex latent-variable models fit via the EM algorithm.

Formula

Notation

Maximum likelihood estimate
Log-likelihood function being maximized

Properties

  • MLE's excellent asymptotic properties, consistency, asymptotic normality, asymptotic efficiency, are guaranteed only under standard regularity conditions (e.g. the parameter isn't at a boundary, the model is correctly specified) -- when those conditions fail, MLE can behave poorly, and specialized corrections or alternative estimators may be needed.
  • For many models, the maximum likelihood estimate has no closed-form algebraic solution and must be found numerically, using iterative optimization methods like Newton-Raphson, Fisher scoring, or the EM algorithm, particularly for models involving latent variables or missing data.
  • Maximum likelihood is a fundamentally different philosophy from method-of-moments estimation, MLE uses the full distributional assumption to extract as much information as possible from the data, generally making it more efficient than method of moments when the assumed model is correct, but also more sensitive to model misspecification.

At a Glance

Choosesthe parameter value that makes the observed data most probable
Asymptotic propertiesconsistent, asymptotically normal, asymptotically efficient
Found viasetting the score function to zero, or numerically (Newton-Raphson, Fisher scoring, EM)
Examplesfitting a normal distribution's mean/variance, logistic regression, most GLMs
Last updated August 8, 2026← Back to the Dictionary