The Delta Method
A one-line rule for the error bar on a transformed estimate: multiply the original standard error by how steeply the transformation is rising at that point. It is how you get a standard error for a volatility, a ratio, or a Sharpe ratio without simulating anything.
Prerequisites: Standard Deviation, The Central Limit Theorem
You estimate something from data and, being careful, you attach an error bar to it. Then someone asks for a different quantity built from the first: you measured a variance and they want a volatility; you measured a hit rate and they want the odds; you measured a mean and a variance and they want a Sharpe ratio. Computing the new number is trivial — just apply the formula. Computing its error bar is not, because the standard error does not travel through the formula unchanged. The delta method is the shortcut that gets it right, and it is short enough to do in your head.
An analogy: uncertainty on a ramp
Imagine standing on a hillside, unsure of your exact position along the ground. Say you know where you are to within one metre. How uncertain is your altitude?
It depends entirely on how steep the hill is where you stand. On a gentle slope, one metre of horizontal doubt buys you a few centimetres of altitude doubt. On a cliff face, that same one metre becomes many metres of altitude doubt. The uncertainty is the same; the terrain converts it differently.
That is the whole idea. Your estimate has some wobble. A transformation is a piece of terrain. The wobble that comes out the other side is the wobble that went in, multiplied by the local steepness. Everything below is that sentence made precise.
The rule, one symbol at a time
Let (theta) be the true quantity and ("theta-hat") your estimate of it. Let be the transformation you want to apply — square root, logarithm, reciprocal, whatever — so the new estimate is . Let ("g-prime") be the derivative of , which is just the slope of the curve at that point. Then, for a large enough sample,
In plain English: the standard error of the transformed estimate is the standard error of the original, multiplied by the steepness of the transformation at the point you estimated. That is the working form, and it is all you need for most tasks.
The formal statement adds the shape of the distribution. If your estimator is asymptotically normal, meaning
read as "as the sample grows, the scaled estimation error settles into a bell curve with variance ", then the transformed estimator is asymptotically normal too:
In plain English: the transformed estimate is also bell-shaped, centred on the transformed truth, with its spread scaled by the slope — squared, because variances are in squared units.
Why it works is worth one sentence. Over a band as narrow as a standard error, almost any smooth curve is indistinguishable from its tangent line. A straight line does nothing to a bell curve except shift and stretch it. So the transformed estimate stays bell-shaped, stretched by the slope.
The delta method needs the estimate itself to be roughly bell-shaped first. Below, set a skewed parent and drag the sample size upward to watch the distribution of the estimate become normal — that is the input the rule requires.
Multiply the standard error by the local slope. . Steep transformations amplify your uncertainty; flat ones hide it.
Worked example 1: from a variance to a volatility
You estimate daily variance from days and get , in units of percent-squared. You want the daily volatility, which is , with an error bar.
Step 1 — the standard error of the input. For roughly normal returns, the standard error of a variance estimate is
Step 2 — the slope of the transformation. Here , so . At :
Step 3 — multiply.
So the daily volatility is , and a rough 95% interval runs from about to . Sanity check: the textbook result for the standard error of an estimated volatility is . Identical. The delta method just re-derived a standard formula in three lines, which is exactly how it earns its keep.
Worked example 2: from a hit rate to odds
A strategy wins on of its trades. Your risk manager wants the odds of winning, , with an error bar.
Step 1 — the input. The estimate is , and the standard error of a proportion is
Step 2 — the slope. The derivative of is , so
Step 3 — multiply.
The odds are . Notice the amplification: a 3.2-point uncertainty in the probability became a 6.6-point uncertainty in the odds, because the odds transformation is steep here. Push the hit rate up to and the slope becomes , so the same sampling noise would be blown up a hundredfold. That is not a flaw in the method; it is a true statement about how badly determined odds are near the extremes.
What this means in practice
- Sharpe ratio error bars. The rule of thumb is a delta-method calculation applied to the ratio of a mean to a standard deviation. It is why a Sharpe of 1.0 from one year of daily data has an error bar of roughly .
- Greeks and risk numbers. Any risk figure computed from estimated parameters — a duration, a delta, a VaR — inherits their uncertainty scaled by a derivative. The delta method is the audit trail for that inheritance.
- When to skip it. If the slope is near zero, or the transformation is sharply curved over the width of your error bar, the linear approximation fails and you should bootstrap instead. A bootstrap costs compute; the delta method costs a derivative.
- Build the interval on the natural scale. Compute the confidence interval for the raw parameter, then push its two endpoints through . That respects the shape of the transformation instead of forcing a symmetric interval onto a skewed quantity.
Two traps, and both are common. First, the standard error transforms, the estimate does not follow the same rule: for any curved , so the transformed estimate carries a small bias that the delta method does not remove — this is Jensen's inequality, and it is why the square root of an unbiased variance is not an unbiased volatility. Second, the method dies where the slope dies. If — say you are estimating when the truth is — the formula predicts zero standard error, which is nonsense. The first-order term has vanished and a second-order expansion is required.
Related concepts
Practice in interviews
Further reading
- Casella & Berger, Statistical Inference, sec. 5.5
- van der Vaart, Asymptotic Statistics, ch. 3