Skip to main content
ExplainerHypothesis TestingEvidence Pack· 5 min read· in Data & Analysis

Evidence Pack: The Mathematical Trade-offs Between the Wald, Score, and Likelihood Ratio Tests

In maximum likelihood estimation, three foundational tests evaluate hypotheses by measuring the likelihood function at different points. While they converge in large samples, their distinct geometric approaches dictate which to use when data is scarce or computation is expensive.

By Ishani Patel

Theoretical Statisticians 40%Applied Data Scientists 35%Econometricians 25%
Theoretical Statisticians
Prioritize the Likelihood Ratio test for its mathematical invariance and superior accuracy in small or skewed samples.
Applied Data Scientists
Rely on the Wald test due to its ubiquitous presence in standard software outputs and efficiency in generating simultaneous p-values.
Econometricians
Utilize the Score (Lagrange Multiplier) test to evaluate complex model expansions without the computational cost of fitting them.

Perspectives this story doesn't cover

  • Machine Learning Engineers dealing with non-parametric models
  • Bayesian Statisticians who reject frequentist hypothesis testing entirely
3
Foundational MLE tests
2
Models required for LR test
1
Models required for Wald/Score
0
Expected gradient at true peak

In statistical modeling, the validity of a hypothesis is ultimately determined by the shape of the likelihood function—a mathematical curve that maps how probable the observed data is across different potential parameter values. The decision to accept or reject a claim hinges entirely on how one measures the distance between the peak of this curve and the restriction proposed by the hypothesis. This geometric evaluation dictates whether an observed effect is real or merely statistical noise.[1][4]

Statisticians have historically relied on three foundational methods to measure this distance: the Likelihood Ratio test, the Wald test, and the Score test. Known collectively as the "Holy Trinity" of maximum likelihood estimation, these three tests were developed between 1928 and 1948 to solve the exact same problem. Yet, they approach the likelihood curve from entirely different geometric perspectives, forcing researchers to choose between computational efficiency and mathematical precision.[1][3]

The core mechanism of all three tests relies on Maximum Likelihood Estimation (MLE). When a model is fitted to data, MLE finds the parameter values that maximize the likelihood function, representing the absolute peak of the curve. A hypothesis test then imposes a restriction—such as claiming a specific variable has an effect size of exactly zero. The tests evaluate how much the likelihood drops when forced away from the peak to this restricted value.[4][6]

The Likelihood Ratio (LR) test, introduced by Jerzy Neyman and Egon Pearson in 1928, is the most direct measurement. It requires the researcher to fit two separate models: one unrestricted model that finds the absolute peak, and one restricted model that forces the parameter to the hypothesized value. The test statistic is simply the vertical distance between these two points on the likelihood curve.[4][6]

The computational requirements and geometric approaches of the three foundational hypothesis tests.

Because it measures the actual drop in likelihood, the LR test is widely considered the gold standard for accuracy. As the UCLA OARC Statistical Consulting documentation explicitly notes, "The likelihood ratio test requires that you estimate both the unrestricted and the restricted models." This dual-estimation makes it highly precise, particularly in small samples, but historically made it computationally prohibitive for complex datasets.[4]

To bypass this computational burden, Abraham Wald introduced the Wald test in 1943. Instead of fitting two models, the Wald test requires only the unrestricted model. It measures the horizontal distance between the estimated parameter and the hypothesized value, scaling that distance by the curvature of the likelihood function at the peak. If the curve is steep, even a small horizontal distance suggests the restriction is highly unlikely.[1][5]

To bypass this computational burden, Abraham Wald introduced the Wald test in 1943.

This single-model requirement made the Wald test the default output in almost all statistical software packages. When a researcher runs a standard regression, the software automatically computes the unrestricted model and uses the Wald test to generate the p-values for every coefficient simultaneously. As the SAS Help Center documentation explains, "The Wald test is based on the distance between the parameter estimate and the hypothesized value."[5]

However, the Wald test carries a significant mathematical vulnerability: it is not invariant to parameterization. If a researcher tests a hypothesis using a linear scale, and another tests the exact same hypothesis using a logarithmic scale, the Wald test can yield p-values differing by more than 0.05 purely due to the mathematical transformation. Furthermore, because it relies on the curvature at the peak to estimate the rest of the curve, it can become highly inaccurate in small samples where the likelihood function is asymmetrical.[1][3]

The Score test, introduced by C.R. Rao in 1948 and later generalized as the Lagrange Multiplier test, takes the opposite computational approach. It requires fitting only the restricted model. It then measures the slope, or gradient, of the likelihood function at that restricted point. If the restriction is close to the true peak, the slope should be nearly zero. If the slope is steep, the restriction is likely false.[1][4]

The Score test is uniquely powerful in econometrics and genetics, where fitting a massive unrestricted model with thousands of parameters is computationally impossible. By fitting only a simple baseline model, researchers can use the Score test to evaluate whether adding 500 new variables would significantly improve the fit, simply by checking the gradient at the restricted baseline.[3][4]

Mathematically, the relationship between these three tests is governed by asymptotic equivalence. In infinite samples, the likelihood function becomes perfectly symmetrical and quadratic. Under these ideal conditions, the vertical drop of the LR test, the scaled horizontal distance of the Wald test, and the slope at the restriction of the Score test all converge to yield the exact same test statistic.[2][3]

Asymptotic equivalence: As sample size increases, the three tests converge to yield identical results.

But real-world data is rarely infinite. In finite samples—often defined in simulation studies as fewer than 500 observations—the likelihood curve frequently skews, causing the three tests to diverge. The Wald test tends to underestimate the true uncertainty, leading to false positives, while the Score test can sometimes be overly conservative. The Likelihood Ratio test remains the most robust, as it does not rely on quadratic approximations.[2][6]

In small samples, asymmetrical likelihood curves cause the tests to diverge, often making the Wald test overly optimistic.

The persistence of the Wald test as the software default is largely an artifact of 20th-century computing limits. When fitting a single logistic regression took 12 hours of mainframe time in 1985, avoiding a second model fit was a practical necessity. Today, a standard 3.2 GHz desktop processor can fit complex models in under 50 milliseconds, eroding the primary advantage of the Wald and Score tests for standard datasets.[1][7]

The choice between the Holy Trinity is therefore no longer dictated by hardware, but by the specific constraints of the data. The next frontier in this mathematical debate lies in high-dimensional machine learning, where models with billions of parameters make even a single unrestricted fit computationally ruinous, forcing researchers to develop entirely new approximations that bypass the classic trinity altogether.[7]

What we don’t know

  • How these three tests diverge under severe model misspecification where the true data-generating process is entirely unknown.
  • The exact sample size threshold where the asymptotic equivalence reliably holds across all possible non-normal data distributions.
  • Whether modern statistical software will eventually abandon the Wald default in favor of automated Likelihood Ratio testing as processing power continues to scale.

Sources

Source coverage

7 outlets

3 viewpoints surfaced

Theoretical Statisticians 40%Applied Data Scientists 35%Econometricians 25%
  1. [1]MetricGateApplied Data Scientists

    Wald vs Score vs Likelihood-Ratio Tests

    Read on MetricGate
  2. [2]PMCEconometricians

    Approximations of the power functions for Wald, likelihood ratio, and score tests and their applications to linear and logistic regressions

    Read on PMC
  3. [3]Cross ValidatedEconometricians

    Likelihood ratio vs. score vs. Wald test: Different p values, which to use?

    Read on Cross Validated
  4. [4]UCLA OARC Statistical ConsultingTheoretical Statisticians

    FAQ: How are the likelihood ratio, Wald, and Lagrange multiplier (score) tests different and/or similar?

    Read on UCLA OARC Statistical Consulting
  5. [5]SAS Help CenterApplied Data Scientists

    Wald Versus Likelihood Ratio Tests

    Read on SAS Help Center
  6. [6]CD GenomicsTheoretical Statisticians

    The Wald Test vs The Likelihood Ratio Test

    Read on CD Genomics
  7. [7]Factlen Editorial Team

    Synthesis by Factlen editorial team

    Read on Factlen Editorial Team

Comments

Stay informed

Every angle. Every day.

Get Data & Analysis stories with full source coverage and perspective breakdowns delivered to your inbox.