Weak Instruments and First-Stage Diagnostics
Instrumental-variables regression only works if the instrument is strongly correlated with the variable it's replacing; a weak instrument produces estimates that are badly biased and wildly imprecise, and the first-stage F-statistic is how you check for that before trusting the result.
Prerequisites: Endogeneity and Instrumental Variables, Ordinary Least Squares (OLS)
Instrumental-variables (IV) regression is the standard fix when a regressor is correlated with the error term — you replace it with an "instrument" that's correlated with the regressor but not directly with the outcome. The catch is that this trick only works cleanly if the instrument is a strong lever on the regressor. If the instrument barely moves the regressor at all, IV doesn't just get noisier — it gets systematically biased in a way that can be worse than not using an instrument at all. Checking instrument strength is not optional due diligence; it's the difference between a usable estimate and a number that looks precise but means nothing.
An analogy: a loose steering wheel
Picture trying to figure out how much turning a car's steering wheel affects its direction, but the only data you have is from a wheel that's mostly disconnected from the axle — turning it 90 degrees barely nudges the wheels. Any tiny bit of play or friction elsewhere in the linkage will dominate your reading, and you'll draw wildly wrong conclusions about the true steering ratio. A strong instrument is a tightly connected wheel: turn it, and the axle reliably responds, so whatever relationship you observe between wheel angle and direction reflects the real mechanism, not noise in the linkage.
The diagnostic, one piece at a time
IV regression has two stages. The first stage regresses the endogenous regressor on the instrument (plus controls):
Here measures how strongly the instrument moves the regressor; a weak instrument means is close to zero relative to its noise. The standard diagnostic is the first-stage F-statistic, which tests whether can be rejected — in plain English, whether the instrument reliably moves the regressor at all, using only this one equation.
This squares the first-stage t-statistic: it's large when the estimated effect of the instrument is large relative to its own uncertainty. The widely cited rule of thumb (Stock & Yogo) is that below about 10 signals a weak instrument, at which point the second-stage IV estimate can be badly biased toward the plain OLS estimate — precisely the biased number IV was meant to avoid — and its reported standard errors understate the true uncertainty.
Worked example 1: a clean strong-instrument case
A researcher wants the effect of a firm's leverage on its stock return, using an instrument — say, an exogenous change in a local tax rule that affects some firms' borrowing costs but not their returns directly. The first-stage regression of leverage on the tax-rule instrument gives with . The F-statistic is , well above 10 — the instrument moves leverage strongly and reliably, so the second-stage IV estimate can be trusted at face value.
Worked example 2: a weak-instrument warning sign
Now suppose a different candidate instrument — same-industry average leverage in a distant region — gives with . The F-statistic is , well below 10. Even if the second-stage regression spits out a seemingly precise-looking coefficient with a small standard error, that precision is illusory: simulations show that with , the IV estimate's true sampling distribution is badly skewed and can be centered far from the truth. The correct response isn't to report the number with a caveat — it's to find a stronger instrument or fall back to a design that doesn't require one.
What this means in practice
Any quant running IV — instrumenting order-flow toxicity, corporate actions, or macro shocks with something plausibly exogenous — should report the first-stage F-statistic alongside the main result, not just the second-stage coefficient. A high F-stat is a prerequisite for trusting the point estimate at all, not a nice-to-have robustness check. When instruments are weak, better options are finding a stronger instrument, using weak-instrument-robust confidence intervals (e.g., Anderson-Rubin), or reporting that identification has failed rather than presenting a biased number with a false sense of precision.
A first-stage F-statistic below about 10 means the instrument doesn't move the regressor reliably enough for IV to work — the second-stage estimate becomes biased toward OLS and its standard errors understate the true uncertainty, so instrument strength must be checked before the IV result is trusted.
The classic mistake is judging an instrument by how plausible its exogeneity story sounds (no correlation with the error term) while never checking whether it's actually strong — a perfectly valid instrument that barely moves the regressor is still useless in practice. A high in the first stage is not the same check either; F depends on the precision of , not on how much of 's variance the instrument explains overall, especially with more than one instrument.
Related concepts
Practice in interviews
Further reading
- Stock & Yogo, Testing for Weak Instruments in Linear IV Regression
- Angrist & Pischke, Mostly Harmless Econometrics, ch. 4