Maximum Likelihood Estimation
Also known as: MLE, maximum-likelihood estimator, ML estimation, Fisher's method of maximum likelihood
Maximum Likelihood Estimation (MLE) is a general-purpose parametric method for estimating the unknown parameters of a statistical model by finding the parameter values that make the observed data most probable. Formalized by R. A. Fisher in his landmark 1922 paper in the Philosophical Transactions of the Royal Society, MLE has become the dominant parameter-estimation paradigm in modern statistics and is the foundational engine behind logistic regression, generalized linear models, structural equation modeling, and virtually all parametric inference procedures.
Read the full method
Sign in with a free account to read this section.
Method map
The neighbourhood of related methods — select a node to explore.
When to use it
MLE is applicable whenever you can write down an explicit parametric density or mass function for the data-generating process and the observations are independent (or have a tractable dependence structure). It is the standard estimation method for linear and generalised linear models, survival models, mixed-effects models, factor analysis, SEM, and discrete-choice econometric models. Core assumptions include: (1) the model family is correctly specified; (2) observations are independent; (3) the parameter is identifiable; (4) the true parameter lies in the interior of the parameter space. With small samples the MLE may be biased; alternatives such as restricted MLE (REML) or bias-corrected MLE address this. If a prior distribution over parameters is available, Bayesian maximum a posteriori (MAP) estimation extends MLE naturally.
Strengths & limitations
- Asymptotically optimal: achieves the Cramér–Rao lower bound, making it the most efficient consistent estimator in large samples.
- Invariance property: if θ̂ is the MLE of θ, then g(θ̂) is the MLE of g(θ) for any function g — making transformations of estimates straightforward.
- Universal framework: a single principle drives estimation in linear models, GLMs, survival analysis, SEM, time-series models, and more.
- Automatic standard errors: the observed or expected Fisher information matrix directly yields asymptotic variance estimates, confidence intervals, and Wald test statistics.
- Software support: implemented in every major statistical package (R, Python/statsmodels, SAS, Stata, SPSS) often as the default estimation engine.
- Requires correct model specification: if the assumed density family is wrong, MLEs are inconsistent and inferences are invalid.
- May be biased in small samples: the MLE is asymptotically unbiased but can carry non-negligible finite-sample bias (e.g., the MLE of σ² in a normal model is biased downward).
- Numerically sensitive in complex models: high-dimensional or multimodal likelihood surfaces can cause convergence failures or convergence to local maxima.
- Does not incorporate prior information: unlike Bayesian estimation, MLE treats parameters as fixed unknowns and provides no mechanism to include substantive prior knowledge.
Frequently asked
How does MLE differ from least squares estimation?
Ordinary least squares (OLS) minimises the sum of squared residuals and requires no distributional assumption beyond uncorrelated errors with constant variance. MLE maximises the likelihood given an explicit distributional assumption. Crucially, when the errors are normally distributed, OLS and MLE yield identical coefficient estimates for linear regression — but MLE additionally estimates the error variance and generalises naturally to non-normal outcomes (e.g., logistic or Poisson regression) where OLS is inappropriate.
What is the Fisher information, and why does it matter?
The Fisher information I(θ) is the expected value of the squared score function, equivalently the negative expected second derivative of the log-likelihood. It measures how much information the data carry about θ: high information means the likelihood is sharply peaked and the MLE will be precise. The Cramér–Rao inequality states that no unbiased estimator can have variance smaller than 1/I(θ), and the MLE achieves this bound asymptotically. In practice, the inverse of the observed information matrix provides the asymptotic covariance matrix of the MLE, and its square roots are the reported standard errors.
Is MLE the same as MAP (maximum a posteriori) estimation?
MAP estimation is the Bayesian analogue of MLE. While MLE maximises the likelihood L(θ | x), MAP maximises the posterior p(θ | x) ∝ L(θ | x) · p(θ), where p(θ) is a prior distribution over the parameters. When the prior is flat (uniform), MAP and MLE coincide. MAP can be interpreted as a regularised form of MLE: for example, a Gaussian prior on regression coefficients corresponds to ridge (L2) regularisation.
When should I prefer Bayesian estimation over MLE?
Bayesian estimation is preferable when you have genuine prior knowledge that should constrain inference, when sample sizes are small enough that the prior has meaningful influence, or when you need full posterior distributions rather than point estimates and asymptotic intervals. MLE is typically preferred when priors are unavailable or hard to justify, when computational simplicity matters, or when asymptotic sample sizes are met — because in large samples Bayesian posteriors concentrate at the MLE anyway.
Sources
- Fisher, R. A. (1922). On the mathematical foundations of theoretical statistics. Philosophical Transactions of the Royal Society of London, Series A, 222, 309–368. DOI: 10.1098/rsta.1922.0009 ↗
- Casella, G., & Berger, R. L. (2002). Statistical Inference (2nd ed.). Duxbury Press / Cengage Learning. ISBN: 978-0534243128
How to cite this page
ScholarGate. (2026, June 3). Maximum Likelihood Estimation. ScholarGate. https://scholargate.app/en/statistics/maximum-likelihood-estimation
Which method?
Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.
- EM AlgorithmStatistics↔ compare
- Logistic RegressionResearch Statistics↔ compare
- Method of MomentsElectrical Engineering↔ compare
- Structural Equation ModelingResearch Statistics↔ compare