The standard story

You have nn i.i.d. random variables X1,,XnX_1, \ldots, X_n with mean μ\mu and variance σ2\sigma^2. Two classical questions:

The CLT question: what does the average Xˉn=1ni=1nXi\bar{X}_n = \frac{1}{n}\sum_{i=1}^n X_i look like for large nn? After centering and scaling:

n(Xˉnμ)σdN(0,1)\frac{\sqrt{n}(\bar{X}_n - \mu)}{\sigma} \xrightarrow{d} \mathcal{N}(0,1)

The EVT question: what does the maximum Mn=max(X1,,Xn)M_n = \max(X_1, \ldots, X_n) look like for large nn? For a broad class of light-tailed distributions, after appropriate centering bnb_n and scaling ana_n:

MnbnandGumbel\frac{M_n - b_n}{a_n} \xrightarrow{d} \text{Gumbel}

where the Gumbel distribution has CDF F(x)=eexF(x) = e^{-e^{-x}}. 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 X=(X1,,Xn)Rn\mathbf{X} = (X_1, \ldots, X_n) \in \mathbb{R}^n as a single point. The CLT and EVT are both statements about where this point lives in Rn\mathbb{R}^n — they just measure distance differently.

The CLT cares about the 2\ell^2 norm — the Euclidean distance from the origin:

X2=X12++Xn2\|\mathbf{X}\|_2 = \sqrt{X_1^2 + \cdots + X_n^2}

EVT cares about the \ell^\infty norm — the maximum coordinate:

X=max(X1,,Xn)\|\mathbf{X}\|_\infty = \max(|X_1|, \ldots, |X_n|)

The 2\ell^2 unit ball is the sphere. The \ell^\infty unit ball is the cube [1,1]n[-1, 1]^n. The two limit theorems are concentration phenomena on these two different geometric objects.

The CLT as thin-shell concentration

Suppose each XiUniform(1,1)X_i \sim \text{Uniform}(-1, 1). The point X\mathbf{X} lives in the cube [1,1]n[-1,1]^n. Where exactly? By the CLT, since each Xi2X_i^2 has mean m2=13m_2 = \frac{1}{3}, the law of large numbers gives:

X22n=1ni=1nXi2m2=13\frac{\|\mathbf{X}\|_2^2}{n} = \frac{1}{n}\sum_{i=1}^n X_i^2 \to m_2 = \frac{1}{3}

So X2n/3\|\mathbf{X}\|_2 \approx \sqrt{n/3} with high probability. The point doesn’t fill the cube — it concentrates on a thin spherical shell at radius nm2\sqrt{nm_2}, 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 X\mathbf{X} sits relative to the cube’s boundary. The \ell^\infty distance to the boundary of [1,1]n[-1,1]^n is 1X1 - \|\mathbf{X}\|_\infty. For large nn, this distance is tiny — the point is very close to the surface.

More precisely, the maximum Mn=XM_n = \|\mathbf{X}\|_\infty satisfies:

P ⁣(n(1Mn)t)1etP\!\left(n(1 - M_n) \leq t\right) \to 1 - e^{-t}

which is the exponential distribution — a Gumbel shifted to have location 0. Setting Mn=1t/n+o(1/n)M_n = 1 - t/n + o(1/n) and zooming in, you see the full Gumbel limit. The point X\mathbf{X} is concentrating on the face of the cube, not on the spherical shell inside it.

The CLT is 2\ell^2 concentration: mass moves to a sphere inside the cube. EVT is \ell^\infty 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 X2\|\mathbf{X}\|_2 (left: CLT shell) and X\|\mathbf{X}\|_\infty (right: EVT face) for a random point in the nn-cube, and plots both. Try increasing nn to watch the concentration sharpen.

Cube concentration: CLT vs EVT ·

The Gumbel limit explicitly

Let’s verify the Gumbel convergence numerically. After standardizing MnM_n by its median and IQR, the distribution should approach the standard Gumbel F(x)=eexF(x) = e^{-e^{-x}}.

Gumbel convergence ·

Why this matters for jump detection

In high-frequency financial data, we observe a process at times 0,Δn,2Δn,,10, \Delta_n, 2\Delta_n, \ldots, 1 with Δn0\Delta_n \to 0. Each increment ΔiX=XiΔnX(i1)Δn\Delta_i X = X_{i\Delta_n} - X_{(i-1)\Delta_n} is roughly normal under a pure diffusion. The vector of increments lives in Rn\mathbb{R}^n.

Under no jumps, the CLT governs the bulk: the realized volatility (ΔiX)2\sum (\Delta_i X)^2 concentrates at σ2\sigma^2, the 2\ell^2 shell picture. A jump test asks whether the maximum increment maxiΔiX\max_i |\Delta_i X| is consistent with the diffusion, or whether it sits too far from the expected Gumbel quantile — the \ell^\infty 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.