The Score (Lagrange Multiplier) Test
A hypothesis test that only needs the simpler, restricted model to be fitted, by checking whether the data is still 'pulling' on the parameters you fixed at their null value.
Prerequisites: The Wald Test, Maximum Likelihood Estimation (MLE)
The Wald test needs you to fit the full, complicated model and look at how far the estimate sits from the null value. The likelihood-ratio test needs you to fit both the full model and the restricted one and compare them. Sometimes fitting the full model is expensive, unstable, or simply the thing you're trying to decide whether to bother doing at all — you want to know before fitting the complicated model whether it's even worth the effort. The score test answers exactly that: fit only the simple, restricted model, and check whether the data still seems to be pulling on the extra parameters you left out.
An analogy: is the extra weight still pulling on the scale
Imagine a two-pan balance where one pan is fixed with a small locking pin, so it can't move even if something is pulling on it. Fit the "restricted" model by only using the free pan. Now ask: if you removed the locking pin, would that pan want to move? You can answer this without ever removing the pin — you just measure the force still straining against it. If the force is small, the pin wasn't holding back much and the restriction was fine. If the force is large, the data is straining hard against a constraint that shouldn't be there. That straining force is the "score," and the test is built entirely around measuring it.
The rule, one symbol at a time
Let be the log-likelihood — a curve whose peak marks the best-fitting parameter value. The score function is the slope of that curve at any point ; it is exactly zero at the maximum-likelihood estimate , by definition of "peak." Under the null hypothesis , evaluate the score at instead of at the peak — this is the "how hard is it still pulling" measurement. The score statistic is
where is the Fisher information at , a measure of how sharply curved the likelihood is there (more curvature means more precision, so the same slope counts as stronger evidence). In plain English: square the slope of the log-likelihood at the null value, and divide by how sharply peaked the likelihood is there — a big score relative to the local sharpness means the null is a bad fit. Under , follows a chi-squared distribution with degrees of freedom equal to the number of restricted parameters, exactly like the Wald and likelihood-ratio statistics.
Think of the curve above as the log-likelihood itself, not the data. If sits at the curve's peak, the slope there is zero and the score test finds nothing wrong. The further sits from the true peak, the steeper the slope at that point, and the larger the score statistic grows.
The score test never needs to find the unrestricted MLE at all — only the slope and curvature of the likelihood at the null value. That is its entire appeal: it tests whether it's worth fitting the bigger model, without fitting the bigger model.
Worked example 1: testing a Poisson rate without fitting further
You observe counts from a Poisson process and want to test . The Poisson log-likelihood score function is , and its Fisher information is . Suppose the observed counts sum to .
Compare to a chi-squared distribution with 1 degree of freedom; the 5% critical value is . Since , reject — note this test never needed to compute the actual MLE, , at all, though we can check it's consistent: the data really does look like it comes from a higher rate.
Worked example 2: comparing to the Wald test on the same data
Using the same data, the MLE is with standard error . The Wald statistic squared is
Both tests reject (both exceed ), but they don't agree exactly — versus — because the Wald test evaluates curvature at while the score test evaluates it at . The two coincide only in the large-sample limit or in special cases like the normal mean; in finite samples, and especially far from the null, they can diverge noticeably.
What this means in practice
- Cheap pre-screening. Before adding an expensive extra parameter to a large risk model, a score test tells you whether it's likely to matter, using only the model you already have fitted.
- Diagnostic tests are score tests. Many classic diagnostics — tests for heteroskedasticity (Breusch–Pagan), for serial correlation (Lagrange multiplier tests in time series) — are score tests in disguise, chosen specifically because they avoid refitting.
- Same asymptotic footing as its rivals. Wald, score, and likelihood-ratio tests are asymptotically equivalent — they agree in large samples — but choosing among them in finite samples is a real, practical decision about what's cheap to compute.
The score test's accuracy depends on the Fisher information being correctly specified and the log-likelihood being reasonably well-behaved near . If the model is misspecified, or the restricted null sits near a boundary of the parameter space, the chi-squared approximation for can be poor — the same finite-sample fragility that plagues the Wald test, just relocated to a different point on the likelihood curve.
Practice in interviews
Further reading
- Casella & Berger, Statistical Inference, sec. 10.3
- Engle, R. (1984), Wald, Likelihood Ratio, and Lagrange Multiplier Tests in Econometrics