Chapter 19

19Asymptotic Efficiency

Maximum likelihood (Chapter 8) was sold to you on a promise: pick the parameter that makes your data least surprising, and you get a general-purpose estimator that works across models. This chapter cashes the promise. It says why the maximum likelihood estimate deserves to be the default — not because it is unbiased or simple, but because, once you have enough data, its sampling distribution (Chapter 6) is the narrowest Gaussian the problem physically allows. The Cramér–Rao bound (Chapter 7) told you there is a floor on how tightly any estimator can concentrate; the large-sample theory of the maximum likelihood estimate tells you that estimator walks right up to that floor and stands on it, and — the deeper and more surprising claim — that essentially nothing can do better.

If you take one idea from this chapter, take this: with enough data the maximum likelihood estimate becomes Gaussian, centered on the truth, with a variance equal to the inverse Fisher information — the smallest variance any well-behaved estimator can have — so "efficient" stops being a property you check and becomes the standard everything else is measured against.

19.1Large-sample behavior of the MLE

Two facts, stacked, carry this whole section. The first is consistency: as the sample size \(n\) grows, the maximum likelihood estimate \(\hat\theta_n\) converges in probability (Chapter 5) to the true parameter \(\theta_0\). Feed the estimator more data and it homes in on the right answer; the sampling distribution collapses toward a spike at the truth. The intuition is that the log-likelihood, averaged over the sample, converges by the law of large numbers (Chapter 5) to a fixed curve whose unique peak sits at \(\theta_0\) — so the sample's peak, which is \(\hat\theta_n\), has nowhere to go but the truth. This is not automatic: it needs the model to be identifiable (different parameters must give genuinely different distributions, or the peak is not unique) and correctly specified, among other conditions we return to below.

Consistency alone is weak — it says you arrive, not how fast or with what spread. The second fact supplies both. Under the regularity conditions, the maximum likelihood estimate is asymptotically normal (its rescaled sampling distribution approaches a Gaussian):

\[\sqrt{n}\,(\hat\theta_n - \theta_0) \;\xrightarrow{d}\; \mathrm{Normal}\!\left(0,\; I(\theta_0)^{-1}\right),\]

where \(I(\theta_0)\) is the Fisher information (Chapter 7), the curvature of the log-likelihood — how sharply the data, on average, distinguishes \(\theta_0\) from its neighbors. Undo the \(\sqrt{n}\) scaling and the practical reading is that for large \(n\) the sampling distribution of the estimate itself is approximately

\[\hat\theta_n \;\approx\; \mathrm{Normal}\!\left(\theta_0,\; \frac{I(\theta_0)^{-1}}{n}\right).\]

The variance shrinks like \(1/n\), so the standard error shrinks like \(1/\sqrt{n}\) — the same rate the central limit theorem (Chapter 5) sets for a sample mean, and no accident, because the derivation is a central limit theorem in disguise. Here is the mechanism in one breath. The estimate solves the score equation — it sets the derivative of the log-likelihood, the score, to zero (Chapter 7). The score is a sum of independent per-observation terms with mean zero and variance \(I(\theta_0)\), so by the central limit theorem it is asymptotically Gaussian; a one-step Taylor expansion of the score around \(\theta_0\) then divides that Gaussian numerator by the log-likelihood's curvature, which converges to \(I(\theta_0)\). Gaussian on top, information on the bottom: out falls \(\mathrm{Normal}(0, I^{-1})\).

Intuition

The log-likelihood near its peak looks like an inverted parabola, and the Fisher information is how sharply it curves. A sharply peaked likelihood pins the parameter down — small wiggles in the data barely move the peak — so the estimate is precise and its variance is small. A flat likelihood leaves the peak sloshing around, so the estimate is noisy. "Inverse information as variance" is just the statement that curvature and uncertainty are reciprocals: the more the data bends the likelihood, the less room the estimate has to wander.

Because \(I(\theta_0)^{-1}/n\) is exactly the Cramér–Rao floor for an unbiased estimator (Chapter 7), an estimator whose asymptotic variance equals \(I(\theta_0)^{-1}\) is called asymptotically efficient — it achieves the information bound in the limit, wasting none of the data's discriminating power. The maximum likelihood estimate is the canonical example. This is the sense in which it is not merely a good estimator but the yardstick: any competitor is graded by how close its asymptotic variance comes to the same floor.

Three bell curves centered on the true parameter theta, growing taller and narrower as n increases from 5 to 20 to 80, each width set by one over the square root of n times the Fisher information. A dashed wider curve at n equals 80 shows an inefficient estimator that fails to reach the floor.
Figure 19.1Asymptotic efficiency made visual: the maximum likelihood estimate's sampling distribution tightens on the truth at rate 1/√n, and each curve's width is exactly the Cramér–Rao floor √(1/(n·I(θ))). An inefficient but consistent estimator (dashed) also concentrates, but never as tightly — it leaves information on the table at every sample size.

The word asymptotic is doing real work, and the regularity conditions are where honest treatments earn their keep. The clean Gaussian limit needs several things at once: the model must be correctly specified and identifiable; the log-likelihood must be smooth enough to differentiate twice; the Fisher information must be finite and nonzero; the true parameter must lie in the interior of the parameter space, not on a boundary; and the support of the distribution must not depend on the parameter. Break any of these and the story changes. When \(\theta_0\) sits on a boundary — a variance component pinned at zero — the limit is no longer a clean Gaussian but a truncated or mixture law (the same boundary problem that bent Wilks' theorem in Chapter 16). When the support depends on \(\theta\), as for the uniform distribution on \([0,\theta]\) whose likelihood peaks at a corner rather than a smooth interior maximum, the estimate converges at rate \(1/n\) rather than \(1/\sqrt{n}\) and its limit is exponential, not Gaussian — faster than "efficient," but outside the theory entirely. And when identifiability fails, consistency itself collapses because the likelihood has no unique peak to find.

Common trap

Asymptotic efficiency is a statement about variance in the limit, not about bias at your sample size. The maximum likelihood estimate is frequently biased for finite \(n\) — the classic case is the variance estimate that divides by \(n\) instead of \(n-1\) — and the bias typically shrinks like \(1/n\) while the standard error shrinks like \(1/\sqrt{n}\), so the bias becomes negligible relative to the noise as data accumulates. "Efficient in the limit" quietly assumes you have taken that limit; it says nothing on its own about whether \(n = 30\) is enough.

A sharper question

Does asymptotic efficiency say anything about the \(n\) you actually have? Not directly — it is a limit theorem, and a limit is a promise about a sequence, not a certificate for one sample. What it gives you at finite \(n\) is a default approximation: treat \(\hat\theta\) as \(\mathrm{Normal}(\theta_0, I^{-1}/n)\) and you usually have a serviceable standard error and interval, with error that fades as \(n\) grows. When it can mislead is exactly when the regularity conditions are strained — small \(n\), a near-boundary truth, weak identification, heavy tails that make the finite-sample distribution skewed. That is precisely the gap the bootstrap (Chapter 20) exists to fill: rather than trusting the asymptotic Gaussian, it resamples to estimate the finite-sample sampling distribution directly, which is why the two chapters are shelved together.

19.2The information floor, again

The Cramér–Rao bound arrived in Chapter 7 as a finite-sample fact with a catch: it lower-bounds the variance only of unbiased estimators. Since the maximum likelihood estimate is usually biased, that bound does not literally apply to it — yet its asymptotic variance lands exactly on the floor. The asymptotic theory is what resolves the tension, and it does more than the finite-sample bound could: it says the floor is optimal not just among unbiased estimators but among essentially all reasonable ones. Making that precise is the achievement of the local asymptotic framework, and it is worth stating honestly rather than waving at, because it is the rigorous backbone under the loose slogan "you cannot beat the MLE."

The framework's engine is local asymptotic normality (LAN): near the truth, on the \(1/\sqrt{n}\) scale where the estimate actually lives, the whole statistical model starts to look like one clean idealized problem — estimating the mean of a single Gaussian with known variance \(I(\theta_0)^{-1}\). Formally, the log-likelihood ratio between \(\theta_0 + h/\sqrt{n}\) and \(\theta_0\) expands into a quadratic in the local parameter \(h\), the signature of a Gaussian-shift experiment (Le Cam, 1953; van der Vaart, 1998). Le Cam's insight is that once your model is LAN, every question about efficient estimation transfers to that limiting Gaussian problem — where the answer is known and simple — so you never have to fight the original model's idiosyncrasies. This is the machinery, developed by Le Cam and Hájek, that upgrades "the MLE happens to hit the floor" into "the floor is a wall no one can pass."

Two theorems build the wall. The first is the convolution theorem (Hájek, 1970). Restrict attention to regular estimators — those whose limiting behavior does not lurch discontinuously as the true parameter is nudged locally, a mild condition ruling out pathological rules that exploit one exact parameter value. Hájek's theorem says the limiting distribution of any regular estimator is a convolution: the efficient Gaussian \(\mathrm{Normal}(0, I^{-1})\) plus independent extra noise. You can add junk on top of the efficient distribution, but you can never subtract from it — the best achievable limit is the pure Gaussian with no added noise, which is exactly what the maximum likelihood estimate attains. The second is the local asymptotic minimax (LAM) theorem (Hájek, 1972; Le Cam, 1953): for any sensible ("bowl-shaped") loss, no estimator can beat the risk of the efficient Gaussian in the worst case over a shrinking neighborhood of the truth. Where the convolution theorem constrains regular estimators, LAM drops even that restriction and bounds every estimator, at the cost of judging it by its worst nearby parameter rather than a single point.

A sharper question

What exactly does the convolution theorem forbid? It forbids a regular estimator from having a limiting distribution more concentrated than \(\mathrm{Normal}(0, I^{-1})\). "Convolution" is the precise word: your estimator's limit law is the efficient law smeared out by an independent noise term, and convolving with independent noise can only spread a distribution, never sharpen it. So no regular estimator can have smaller asymptotic variance — or, more strongly, a tighter distribution by any reasonable measure of spread, not just variance. The one escape hatch is the word "regular." The theorem says nothing about irregular estimators that behave discontinuously in the parameter, and that hatch is exactly what the next cautionary tale crawls through.

That cautionary tale is superefficiency: the existence of estimators that beat the information bound — smaller asymptotic variance than \(I^{-1}\) — at some parameter values. The famous construction is Hodges' estimator (Le Cam, 1953). Start from the maximum likelihood estimate \(\hat\theta\), and add one rule: if \(\hat\theta\) falls within \(n^{-1/4}\) of zero, snap it to exactly \(0\); otherwise leave it alone. When the truth really is \(\theta_0 = 0\), this shrink-to-zero move makes the estimator ferociously accurate — asymptotic variance \(0\), cleanly below the floor \(I^{-1}\). For a while in the 1950s this looked like it might break the whole efficiency story: an estimator that beats the "unbeatable" bound.

Asymptotic risk plotted against the true parameter theta. The maximum likelihood estimate is a flat horizontal line at the information bound I inverse. Hodges' estimator dips to zero exactly at theta equals zero but rises into two tall peaks in the neighborhood on either side before settling back onto the flat bound far from zero.
Figure 19.2The superefficiency trap. Hodges' estimator (brick) drops to zero risk at exactly θ = 0 — beating the information bound at one point — but pays for it with towering risk in the shrinking neighborhood around zero. The maximum likelihood estimate (blue) sits flat on the floor everywhere. Local asymptotic minimax reads the worst point in each neighborhood, not the lucky one, so it sees the peaks, not the dip.

It does not break it, and seeing why is the point of the whole framework. Two facts defang Hodges' estimator. First, the set of parameter values where any estimator can be superefficient has Lebesgue measure zero — Le Cam proved you can win at isolated points but never on a region of real width, so the "improvement" is invisible to any prior that spreads mass continuously. Second, and this is what LAM is for: buying that dip at \(\theta_0 = 0\) costs you enormously in a neighborhood around zero, where the estimator's risk spikes far above the floor (the peaks in the figure). Because LAM judges an estimator by its worst case over a shrinking neighborhood — not by its value at one lucky point — it sees those peaks, and the maximum likelihood estimate, flat on the floor everywhere, wins the local-minimax contest. Superefficiency at a point is real; superefficiency that survives the honest worst-case accounting does not exist.

A sharper question

If Hodges' estimator beats the bound at a point, why isn't the maximum likelihood estimate asymptotically inadmissible? Because "beating it at a point" is not the same as dominating it, and admissibility (Chapter 11) is about domination — being at least as good everywhere and strictly better somewhere. Hodges' estimator is better than the maximum likelihood estimate only at \(\theta_0 = 0\) (and its measure-zero cousins); everywhere in the surrounding neighborhood it is worse, often dramatically. So it does not dominate, and it does not render the maximum likelihood estimate inadmissible. This is genuinely different from Stein's paradox (Chapter 13), where the James–Stein estimator dominates the sample mean everywhere in three or more dimensions — a real free lunch. Hodges is a fake free lunch: the gain at a point is paid for, with interest, right next door.

When two estimators both work, you compare them by relative efficiency — the ratio of their asymptotic variances (equivalently, the ratio of sample sizes each needs to reach the same precision). An estimator with relative efficiency \(0.8\) against the maximum likelihood estimate needs about \(25\%\) more data to match it, because it wastes a fifth of the information. Since the maximum likelihood estimate sits on the floor, its relative efficiency against any competitor is at least \(1\): efficiency is the currency in which "how much does using the wrong method cost?" gets a number.

All of this, though, rests on a foundation stated once and then quietly assumed everywhere: the model is correct. Drop that and the picture shifts. Cast the maximum likelihood estimate as an M-estimator — an estimator defined as the solution to an estimating equation, "set the average of some score function to zero" — and you can ask what it converges to when the data does not come from your assumed family. Under misspecification (the model family does not contain the true data-generating distribution), the estimate still converges and is still asymptotically normal, but it aims at the parameter value whose model is closest to the truth in Kullback–Leibler divergence, and its asymptotic variance is no longer the tidy \(I^{-1}\). Instead it takes the sandwich form (White, 1982):

\[\mathrm{Var}(\hat\theta) \;\approx\; \frac{1}{n}\, A^{-1} B A^{-1}, \qquad A = -\mathbb{E}[\text{Hessian of log-likelihood}], \quad B = \mathrm{Var}[\text{score}].\]

The name is the shape: two "bread" factors \(A^{-1}\) around a "meat" factor \(B\). When the model is correct, a beautiful identity from Chapter 7 — the two definitions of Fisher information agree — forces \(A = B = I\), the bread and meat cancel, and the sandwich collapses to the efficient \(I^{-1}\). When the model is wrong, \(A \neq B\), the collapse fails, and reporting the naive \(I^{-1}\) standard error understates (or overstates) the real uncertainty. The efficiency guarantee is a reward for a correctly specified model; the sandwich is what you fall back on when you are honest that yours might not be.

Note

The sandwich estimator is why "robust" or "heteroskedasticity-consistent" standard errors are everywhere in applied regression: they are the empirical version of \(A^{-1} B A^{-1}\), computed without trusting the model's own variance formula. You give up efficiency — the sandwich is wider than \(I^{-1}\) when the model is right — in exchange for validity when it is wrong. It is the same bias-variance-style bargain the book keeps returning to, now written in the currency of trust in your model.

References

Check yourself

A few questions to test the ideas from this chapter. Pick an answer to see whether it holds up.

  1. Under the usual regularity conditions, what does asymptotic normality of the MLE assert about √n(θ̂ − θ₀)?

  2. The MLE for the Uniform(0, θ) model converges at rate 1/n to a non-Gaussian limit, outside the standard theory. Which regularity condition does this model break?

  3. Hájek's convolution theorem characterizes the limiting distribution of any regular estimator. What does it say?

  4. Hodges' estimator has asymptotic variance strictly below I⁻¹ at θ = 0. Why does this not make the MLE asymptotically inadmissible?

  5. You fit a model by maximum likelihood but suspect the model family does not contain the true distribution. What asymptotic variance should you report?

  6. An estimator has asymptotic relative efficiency 0.5 against the MLE. What does that mean operationally?