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

When the Sigma Lens Breaks

~10 min · sigma-failure, fat-tails, preview-track-07, lens-limits

Level 0Stats Novice
0 XP0/55 lessons0/14 achievements
0/100 XP to next level100 XP to go0% complete
"A σ-based statement on fat-tailed data is mathematically valid arithmetic about a fantasy world."

The Lens Has a Domain

The σ lens works beautifully where the bell-curve assumption holds. It works badly — and often misleadingly — where it doesn't. The list of 'where it doesn't' is most of the consequential data in the world: financial returns, social-media virality, file sizes on the web, response times in stressed systems, wealth distributions, network traffic, earthquake magnitudes.

For each of these, computing σ and quoting 'this is a 3σ event' is technically a valid arithmetic operation. The interpretation 'this happens 0.13% of the time' is a fantasy borrowed from a normal distribution that doesn't fit the data. The arithmetic is fine; the conclusion is wrong.

How the Mismatch Hides

The center of a fat-tailed distribution often looks bell-shaped. A histogram of daily stock returns over a calm year looks roughly normal. The σ computed from it is well-defined. The 95% interval computed from that σ covers most days. Everything seems fine — until a crisis day arrives, at which point the 'rare' event happens, and another arrives the next day, and another the day after that. The σ lens was sampled from the calm middle of a fat-tailed distribution; it has nothing to say about the tails it didn't see.

This is what makes the failure mode insidious. The σ lens reports zero red flags on quiet data. It only fails when it matters most: in the tails, where the consequential events live, and where its calibration is most divorced from reality.

The Citizen's Two-Question Test

Before applying the σ lens to any new dataset:

  1. What is the underlying process? Are the data points sums of many small independent contributions (CLT applies, σ lens probably works), or are they outcomes of a process where one factor can dominate (CLT doesn't apply, σ lens probably misleads)?
  2. Have you seen the tails? A calm sample of fat-tailed data looks normal. The lens calibrated on it will lie when the tail event arrives. Stress-test your σ assumption by asking: if a 5σ event happened tomorrow, would you genuinely consider it a 1-in-3.5-million coincidence, or would you suspect the model?

The Closer for Track 04

The σ lens is the first normal-distribution trick. It is precise where it applies and dangerous where it doesn't. Track 07 will dismantle the worst failures in detail. For now, hold the rule: the lens has a domain, and the citizen's job is to know which side of the domain boundary the data is on. The arithmetic doesn't tell you; only the underlying-process question does.

Code

Sigma lens applied to normal vs fat-tailed data·python
import numpy as np
rng = np.random.default_rng(100)

# Generate two datasets: one truly normal, one fat-tailed Student-t (df=3).
# Both have N=10,000 and similar sample std.
normal = rng.normal(size=10_000)
fat = rng.standard_t(df=3, size=10_000)

# Standardize both.
def summary(label, x):
    z = (x - x.mean()) / x.std()
    p2 = (np.abs(z) > 2).mean()
    p3 = (np.abs(z) > 3).mean()
    p4 = (np.abs(z) > 4).mean()
    p5 = (np.abs(z) > 5).mean()
    print(f"{label:>20s}: P(|z|>2)={p2:.4f}  >3={p3:.4f}  >4={p4:.5f}  >5={p5:.6f}")

summary("true normal", normal)
summary("fat-tailed (t)", fat)
print("\nNormal-expected:    P(|z|>2)=0.0455   >3=0.0027   >4=0.00006   >5=6e-7")

# True normal matches the expected rarities closely.
# Fat-tailed data has 'sigma' the σ lens can compute, but the realized
# tail probabilities are far higher than the lens predicts.
# A 5σ event in this fat-tailed data is roughly 0.5% — NOT 1 in 3.5 million.
# Same σ-vocabulary; different reality.

External links

Exercise

Take one quantity you've recently quoted in σ-units (or that you've seen quoted in σ-units). Apply the two-question test: (1) what is the underlying process — additive sums of independent small contributions, or something where one factor dominates? (2) Have you seen the tails, or only a calm middle? If both questions fail, the σ statement is borrowing credibility it doesn't have. The fix is to either get tail data, or switch to a non-σ lens (Track 07 toolkit).
Hint
Most pandemics, financial crises, social-media virality, and accident clusters look normal in the calm period and produce far more 'sigma' events in the stressed period than the calm σ would predict. The lens failed because the calibration data was the wrong sample.

Progress

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

Comments 0

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

No comments yet — be the first.