The standard story
You have i.i.d. random variables with mean and variance . Two classical questions:
The CLT question: what does the average look like for large ? After centering and scaling:
The EVT question: what does the maximum look like for large ? For a broad class of light-tailed distributions, after appropriate centering and scaling :
where the Gumbel distribution has CDF . These look like unrelated facts. But they aren’t.
Think in high dimensions
Here is a reframing that changes how both results feel. Consider the random vector as a single point. The CLT and EVT are both statements about where this point lives in — they just measure distance differently.
The CLT cares about the norm — the Euclidean distance from the origin:
EVT cares about the norm — the maximum coordinate:
The unit ball is the sphere. The unit ball is the cube . The two limit theorems are concentration phenomena on these two different geometric objects.
The CLT as thin-shell concentration
Suppose each . The point lives in the cube . Where exactly? By the CLT, since each has mean , the law of large numbers gives:
So with high probability. The point doesn’t fill the cube — it concentrates on a thin spherical shell at radius , deep inside the cube. This is the thin-shell phenomenon, and the CLT for the coordinates is the one-dimensional shadow of this concentration.
EVT as face concentration
Now ask where sits relative to the cube’s boundary. The distance to the boundary of is . For large , this distance is tiny — the point is very close to the surface.
More precisely, the maximum satisfies:
which is the exponential distribution — a Gumbel shifted to have location 0. Setting and zooming in, you see the full Gumbel limit. The point is concentrating on the face of the cube, not on the spherical shell inside it.
The CLT is concentration: mass moves to a sphere inside the cube. EVT is concentration: mass moves to the surface of the cube. They are dual directions of the same phenomenon.
Visualizing the radial distribution
The code below computes the distribution of (left: CLT shell) and (right: EVT face) for a random point in the -cube, and plots both. Try increasing to watch the concentration sharpen.
The Gumbel limit explicitly
Let’s verify the Gumbel convergence numerically. After standardizing by its median and IQR, the distribution should approach the standard Gumbel .
Why this matters for jump detection
In high-frequency financial data, we observe a process at times with . Each increment is roughly normal under a pure diffusion. The vector of increments lives in .
Under no jumps, the CLT governs the bulk: the realized volatility concentrates at , the shell picture. A jump test asks whether the maximum increment is consistent with the diffusion, or whether it sits too far from the expected Gumbel quantile — the picture.
The same geometric duality that makes CLT and EVT seem like separate subjects is exactly what makes them complementary tools for this problem: you need both to see the full picture of a semimartingale.
References & further reading
The thin-shell concentration phenomenon is developed rigorously in asymptotic geometric analysis — see Klartag (2007) and the survey by Guedon & Milman. For the EVT side, the norm-based picture appears in multivariate extreme value theory via the exponent measure; see de Haan & Ferreira (2006), Chapter 6. For jump detection in the semimartingale setting specifically, see Bibinger (2024) and Jacod & Protter, Discretization of Processes.