The Hill Estimator and Tail Index
A way to read the "fatness" of a distribution's tail directly off the data's most extreme order statistics, with no need to guess at the whole distribution's shape first — and a warning about how unstable that reading can be.
Prerequisites: The Pareto Distribution and Power Laws, Order Statistics
"How fat is the tail?" sounds like a question that needs a whole distribution fit first. It doesn't. If you only care about the far tail — the part that decides whether a 10-sigma move is merely rare or genuinely impossible — there's a single number, the tail index, that summarizes it, and a formula that reads it straight off your largest observations without assuming anything about the rest of the distribution.
The analogy: judging a staircase by its top steps
A power-law tail means that, plotted on a log-log scale, the far right of the distribution looks like a straight line — its steepness is the tail index. You don't need to survey the whole staircase to measure that steepness; you can estimate the slope just from the last few steps at the top. The Hill estimator does exactly that: it looks only at the largest observations in your sample and estimates the tail's steepness from how they're spaced relative to each other.
Writing it down
A distribution has a power-law (Pareto-type) tail with index if for large — smaller means a fatter, slower-decaying tail (more extreme events), and means the variance itself is infinite. Sort your sample from largest to smallest as , pick a number of top observations , and the Hill estimator is
In words: take the largest observations, compute the log-ratio of each to the -th largest (the cutoff just below your chosen tail), average those log-ratios, and invert. If the top observations are only slightly larger than the cutoff, the average log-ratio is small and comes out large — a thin tail. If some of the top observations are wildly larger than the cutoff, the average log-ratio is large and comes out small — a fat tail.
The explorer above plots a power curve; a Pareto-type tail's survival probability decays exactly like this shape on the right side of the distribution, and is the exponent controlling how sharply it bends toward zero — drag it and notice how a smaller exponent leaves far more mass out in the tail.
Worked example 1: computing by hand
Suppose the six largest daily losses in a sample (in $ millions), sorted descending, are 12, 9, 8, 7, 6, 5, and you take , using the 6th value (5) as the cutoff. Compute the log-ratios: , , , , . Sum: . Average: . Invert: . A tail index just above 2 is a classic finding for daily equity return tails — right at the boundary where variance is barely finite, which is exactly the empirical folklore this estimator is built to quantify precisely.
Worked example 2: why matters, on the same data
Redo it with only the top observations (12, 9, 8), cutoff now the 4th value, 7: , , . Sum , average , so . Using fewer, more extreme observations gave a different answer — 3.25 instead of 2.04 — from the same six numbers. This isn't a mistake in either calculation; it's the estimator's defining weakness: with so few data points feeding it, is highly sensitive to exactly how many top observations you include, and there's no automatic right answer for .
What this means in practice
- Tail index below 2 means theoretically infinite variance — a warning that any variance-based risk measure (standard deviation, ordinary VaR formulas that assume finite variance) is standing on ground that doesn't fully exist for that instrument's return distribution.
- Cross-asset comparisons of "fat-tailedness" — equities versus crypto versus commodities — are routinely done by comparing Hill estimates, since it needs no full distributional assumption, only enough extreme observations to work with.
- A "Hill plot" (plotting against a range of values) is the standard diagnostic for whether an estimate is trustworthy: a genuine power-law tail shows roughly flat over a wide range of ; a jagged, unstable Hill plot means the tail isn't well-described by a single power law, or there isn't enough data.
The Hill estimator reads the fatness of a distribution's tail — the exponent in — directly from the largest observed values, without needing to model the rest of the distribution. Smaller means a fatter tail, and is a red flag that variance itself may not exist.
The estimator is highly sensitive to the choice of , the number of top observations used — as worked example 2 shows, the same six numbers gave 2.04 with and 3.25 with . Reporting a single Hill estimate without a Hill plot showing stability across a range of is reporting a number that could have come out quite different with an equally defensible choice of cutoff.
Related concepts
Practice in interviews
Further reading
- Hill, A Simple General Approach to Inference About the Tail of a Distribution (1975)
- Resnick, Heavy-Tail Phenomena: Probabilistic and Statistical Modeling (ch. 4)