The Wald Test
The most common way to test whether an estimated parameter is meaningfully different from some target value: divide the gap between them by the standard error and check if that ratio is unusually large.
Prerequisites: Hypothesis Testing, Maximum Likelihood Estimation (MLE)
You fit a model and get a coefficient — say, a factor's estimated exposure to momentum is 0.12. Is that a real effect, or could it plausibly be zero, with 0.12 just being noise from a finite sample? Every practitioner reaches for the same tool: divide the estimate by its standard error and see if the ratio is "big." That instinct, formalized, is the Wald test — arguably the single most-used piece of statistical machinery in applied work, precisely because it needs almost nothing beyond an estimate and its standard error.
An analogy: how many arm-lengths away is it
Imagine you're trying to tell whether an object sitting some distance from you is genuinely far away, or whether it just looks far away because your depth perception is a bit fuzzy today. The natural question is: how many "units of your own fuzziness" away is it? If the object is ten fuzziness-units away, you're confident it's really there; if it's only half a fuzziness-unit away, you can't tell it apart from being right next to you. The Wald test asks exactly this about an estimate: how many standard errors away from the hypothesized value does it sit?
The rule, one symbol at a time
Let be your parameter estimate, the value you're testing against (often zero), and its standard error. The Wald statistic is
In plain English: take the gap between what you estimated and what the null hypothesis claims, and measure that gap in units of standard error. Under the null hypothesis, and for a large enough sample, behaves like a standard normal random variable — it should typically land between about and . A value far outside that range is evidence the null is wrong. Squaring gives a statistic that follows a chi-squared distribution with one degree of freedom, which generalizes cleanly to testing several parameters jointly using , where is the estimated covariance matrix of the parameters — the multi-parameter version of "how many standard errors away."
Under the null, the Wald statistic behaves like a draw from the curve above — usually landing near zero, rarely landing far out. A that sits many standard errors from corresponds to a deep in the tail, exactly the sort of outcome the curve says should almost never happen if the null were true.
The Wald test is "estimate minus target, divided by standard error" — the same t-statistic logic you already use, generalized to any maximum-likelihood estimate, one parameter or many at once.
Worked example 1: testing a single regression coefficient
A regression gives a momentum-factor loading of with standard error , from a large sample. Test .
Under the null, approximately, so a value of has a two-sided p-value of about . That's well below any conventional 5% threshold, so you reject : the loading is unlikely to be pure noise.
Worked example 2: testing two coefficients jointly
Suppose a model estimates two coefficients, and , with estimated variances and and zero covariance between them (a diagonal covariance matrix, for simplicity), and you test jointly.
Compare to a chi-squared distribution with 2 degrees of freedom; the 5% critical value there is . Since , you fail to reject the joint null at the 5% level — even though alone might look individually significant, the joint test doesn't clear the bar, illustrating that testing coefficients one at a time and testing them together can give different answers.
What this means in practice
- It's everywhere. Regression t-statistics, GARCH parameter significance, logistic regression coefficient tests — nearly all of them are Wald tests in disguise, because they all reduce to "estimate over standard error."
- Only needs one fitted model. Unlike the likelihood-ratio test, the Wald test doesn't require refitting the model under the null — a real advantage when refitting is expensive.
- Sensitive to the parameterization. Testing versus testing (an equivalent hypothesis, algebraically) can give a different Wald statistic, because the standard error transforms differently under each parameterization — an artifact the likelihood ratio test doesn't share.
The Wald test relies on the sampling distribution of actually being close to normal, which is only guaranteed asymptotically — in small samples, or near a boundary of the parameter space (like a variance close to zero), the normal approximation can be badly wrong, and the Wald test's p-values become unreliable even when the underlying model is correctly specified. When in doubt, cross-check against a likelihood-ratio test, which tends to be more robust in exactly these situations.
Related concepts
Practice in interviews
Further reading
- Casella & Berger, Statistical Inference, sec. 10.3
- Greene, Econometric Analysis, ch. 5