C.W.K.
Stream
Lesson 06 of 06 · published

Fat Tails: The Black Swan Preview

~11 min · fat-tail, black-swan, kurtosis, tail-risk

Level 0Stats Novice
0 XP0/55 lessons0/14 achievements
0/100 XP to next level100 XP to go0% complete
"The rare events are not as rare as the bell curve says. That single sentence is the seed of every financial crisis you've ever heard of."

Tail Thickness Is the Hidden Dimension

So far we have introduced distributions by their shape (symmetric vs skewed) and their tail decay (exponential vs power law). The third lens — and the one that does the most citizen damage when ignored — is tail thickness.

A 'fat-tailed' distribution is one where extreme values are much more probable than a normal of the same mean and variance would predict. Mathematically, the kurtosis is higher than 3 (the kurtosis of the normal). Visually, the histogram has a normal-looking center but heavier mass in the regions far from the mean.

Why the Normal's Tails Are Thin

The normal PDF decays like e^(-x²/2). The exponential of a negative square goes to zero very, very fast. A value at 5σ is about 6 in 10 million. A value at 6σ is about 2 in a billion. In a normal world, the rare is genuinely vanishingly rare, and ignoring it is safe.

Fat-tailed distributions decay much more slowly. In a Student's t-distribution with low degrees of freedom, or a Cauchy, or any power-law tail, 5σ events happen often enough to dominate any long-run average. The 'rare' is not rare; it is just less frequent than the typical.

The 2008 Lesson, Compressed

Financial risk models in the 2000s assumed asset returns were approximately normal. They were not. The actual return distribution had fat tails — large daily moves happened far more often than the normal predicted. When the rare-but-not-actually-rare event materialized, the entire industry was caught with risk estimates calibrated to a thin-tailed world. The arithmetic was correct; the distribution was wrong; the cost was measured in trillions.

This isn't ancient history. The same mistake gets made every year in domains the public doesn't watch as closely: insurance models, climate forecasts, cybersecurity, supply-chain risk. Anywhere a model assumes thin tails and reality has fat ones, there is a 2008 in waiting.

The Operating Rule

The default assumption of normality is the citizen's most expensive habit. Track 07 (Normality Misuse) is built around dismantling this assumption in detail; this lesson plants the warning so it's loud before you get there. When you read 'X-sigma event,' ask: is the underlying distribution actually normal, or is the sigma being borrowed from a normal-shaped imagination that doesn't fit the data?

What Track 02 Has Done

Six lessons, one menagerie: normalization as the universal pattern (1), what a distribution actually is (2), the bell (3), the skewed (4), the power law (5), the fat-tailed (6). The next track derives WHY the bell shows up so often when its preconditions are met. Track 07 then derives what happens when you assume the bell and the preconditions are quietly broken. The whole quest is the dialog between those two halves.

Code

Normal vs Student-t tails: same sigma, different reality·python
import numpy as np
rng = np.random.default_rng(20)
N = 200_000

# Compare a normal and a Student's t with low degrees of freedom (fat-tailed).
normal = rng.normal(size=N)
student_t = rng.standard_t(df=3, size=N)

# Standardize both so their std=1 for fair tail comparison.
for name, x in [("normal", normal), ("t (df=3)", student_t)]:
    x = (x - x.mean()) / x.std()
    p4 = (np.abs(x) > 4).mean()
    p5 = (np.abs(x) > 5).mean()
    p6 = (np.abs(x) > 6).mean()
    print(f"{name:>10s}: P(|x|>4) = {p4:.5f}   P(|x|>5) = {p5:.6f}   P(|x|>6) = {p6:.6f}")

# In a normal, |x|>5 is about 6 in 10 million.
# In a t(df=3), |x|>5 happens roughly 1000x more often.
# Same axis, same standard deviation, different reality.
# This is what 'fat-tailed' looks like on the page.

External links

Exercise

Pick one quantity in your work or life that is likely fat-tailed (daily portfolio P&L, customer support ticket arrival rate, viral content reach, file download size, error log frequency). Estimate the size of the biggest event you've ever seen relative to the median. If the ratio is more than 10x, you're almost certainly in fat-tail territory and any 'sigma-based' reasoning is mistaken.
Hint
A 100x event in a thin-tailed world should basically never happen. If you've seen one, the world isn't thin-tailed.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue
💛 by Ttoriwarm

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.