Fisher Information
A single number that measures how much a batch of data tells you about an unknown parameter. The sharper the log-likelihood peaks, the more information you have and the tighter your estimate can be.
Prerequisites: Maximum Likelihood Estimation (MLE), Expectation, Variance & Moments
Fisher information answers a very practical question: how much does the data I collected actually pin down the thing I'm trying to estimate? Some experiments are informative, every observation sharply narrows the range of plausible answers. Others are nearly useless, you could collect a thousand points and still barely know the parameter. Fisher information turns that vague sense of "informativeness" into one concrete number.
The idea sits right on top of Maximum Likelihood Estimation (MLE). When you fit a parameter by maximum likelihood, you look for the value that makes the data most probable, and you trace out the log-likelihood as varies. If that curve rises to a sharp, pointy peak, tiny changes in hurt the fit a lot, so the data are shouting where the answer is. If the curve is a lazy, flat hump, many values of fit almost equally well, and the data are barely whispering.
The definition
Fisher information is the average curvature of the log-likelihood at the true parameter, equivalently the variance of its slope (the score):
Reading it in words: is the slope of the log-likelihood (the score), and its variance is how much that slope jumps around from sample to sample. The equivalent form is the expected downward curvature, how fast the slope is dropping at the peak. A steep, sharply-bending peak gives a large ; a flat one gives a small . The two expressions being equal is the famous information identity, and it only holds when the model is correctly specified.
Fisher information is the curvature of the log-likelihood at its peak: . Sharp peak, high information, precise estimate. Flat peak, low information, vague estimate.
Why it matters: it sets the precision floor
The whole reason to care is that Fisher information controls how precise any estimate can possibly be. It adds up across independent observations, i.i.d. data points carry times the information of one, . And through the The Cramér-Rao Bound, the variance of any unbiased estimator can never fall below . More information means a lower floor on your error bars. The maximum-likelihood estimate is special because, in large samples, it reaches that floor: its variance is approximately .
Worked example: information in a coin
You flip a coin times to estimate the heads probability . For one flip the log-likelihood is , where is for heads and for tails. Its second derivative works out to , and taking the expectation (using ) gives the per-flip information:
Now read what it says. At the information per flip is , the smallest it ever gets, so a near-fair coin is the hardest case to pin down. At it jumps to : a lopsided coin reveals itself far faster, because each flip is more decisive. With flips of a fair coin the total information is , so the best possible variance for estimating is , a standard error of . That matches the familiar .
Information adds: independent observations carry times the information of one, so your best-case standard error shrinks like . Want half the error bar? You need four times the data.
Where it misleads
- It assumes the model is right. The clean identity relies on the likelihood being correctly specified. Fit a Gaussian to fat-tailed returns and the "information" you compute overstates your true precision, use a robust (sandwich) covariance instead.
- It's a local, average quantity. Fisher information describes the curvature at the true parameter, averaged over hypothetical datasets. A particular sample can be more or less informative than the average suggests; the observed information (the actual curvature at your estimate) is often the better small-sample proxy.
- High information is not the same as a good answer. Information bounds the variance, not the bias. A confidently precise estimate of the wrong thing is still wrong. See Bias, Variance, and the Quality of Estimators.
The habit worth building: whenever you fit a parameter, glance at how sharply the fit degrades as you move away from the optimum. That steepness is the Fisher information, and it is the raw material behind every standard error, confidence interval, and the efficiency benchmark in the The Cramér-Rao Bound.
Related concepts
Practice in interviews
Further reading
- Casella & Berger, Statistical Inference (Ch. 7)
- Wasserman, All of Statistics (Ch. 9)
- Lehmann & Casella, Theory of Point Estimation