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

Type I vs Type II: The Asymmetry the Courtroom Lives In

~12 min · type-i, type-ii, asymmetry, preview-courtroom

Level 0Stats Novice
0 XP0/55 lessons0/14 achievements
0/100 XP to next level100 XP to go0% complete
"The Type I / Type II asymmetry is the most consequential single idea in citizen statistics. The legal system was built around it."

The Definitions

In a hypothesis test:

  • Type I error: rejecting H₀ when it is actually true. The 'false alarm.' Probability = α (the significance level).
  • Type II error: failing to reject H₀ when H₁ is actually true. The 'missed detection.' Probability = β. Power of the test = 1 − β.

The two errors live on opposite sides of the same decision. For a fixed amount of data, lowering one tends to raise the other. The choice of α (and the resulting β) is therefore a policy decision: which error type are we more willing to pay for?

The Asymmetry Is Always There

Different domains weight the two error types differently:

  • Cancer screening: a Type I (false-positive screening) is the cost of unnecessary follow-up tests and anxiety; a Type II (missed cancer) is far worse. Screening tests are calibrated toward sensitivity (low Type II) at the cost of more Type I.
  • Drug approval: a Type I (approving a drug that doesn't work) wastes money and creates side effects in patients; a Type II (rejecting an effective drug) means patients suffer without treatment. Regulators set α small (Type I averse) and let Type II float higher — better to approve too few than too many.
  • Spam filtering: a Type I (legitimate email marked as spam) means a missed message; a Type II (spam in the inbox) means clutter. Most filters are tuned toward Type II (more clutter, fewer missed messages) because missing a real email is more costly than tolerating spam.
  • Criminal trial: a Type I (convicting an innocent person) is treated as worse than a Type II (acquitting a guilty person). This is the entire reason the legal system uses 'beyond reasonable doubt' — a very small α calibrated to a very strong Type I aversion.

The Blackstone Ratio

The 18th-century English jurist William Blackstone wrote: 'it is better that ten guilty persons escape than that one innocent suffer.' That single sentence is the Type I / Type II asymmetry that the entire common-law tradition encodes. Convict the innocent (Type I) = catastrophic. Acquit the guilty (Type II) = unfortunate but acceptable. The ratio (10:1) is rhetorical, but the asymmetry it encodes is operational and very real.

Where Track 06 Picks This Up

The Type I / Type II asymmetry is what the next track — Track 06 (Courtroom) — will turn into a full dismantling of the citizen frame 'why are they letting that monster walk?' That frame fixates on Type II error (a guilty person not being punished) and is blind to the system's deliberate Type I aversion. Once the asymmetry is visible, the citizen complaint dissolves: the legal system did exactly what its design intends. The next track makes this dismantling explicit.

Code

Type I and Type II error rates, simulated·python
import numpy as np
rng = np.random.default_rng(150)

# Simulate a test for a true difference.
# H0: no effect (mean = 0).  H1: true effect (mean = 0.3).
# Sample size N, significance level alpha.
N = 30
alpha = 0.05
threshold = 1.96 / np.sqrt(N)   # critical value for sample mean

M = 10_000
true_means = [0.0, 0.3]   # null world and effect world
for true_mean in true_means:
    samples = rng.normal(loc=true_mean, scale=1.0, size=(M, N))
    sample_means = samples.mean(axis=1)
    rejected = np.abs(sample_means) > threshold
    fraction = rejected.mean()
    label = "true H0" if true_mean == 0 else "true H1 (effect=0.3)"
    print(f"{label:>30s}: rejection rate = {fraction:.4f}")

# Under true H0: rejection rate ≈ alpha = 0.05 (Type I error rate).
# Under true H1 (effect 0.3, N=30): rejection rate = power = 1 - Type II rate.
# To lower Type I, raise the threshold — but that lowers power (raises Type II).
# The trade-off is fundamental for a fixed N.

External links

Exercise

Pick a decision in your life with two failure modes (acting on a false alarm vs missing a real signal). Examples: replying to a possibly-phishing email, taking medication based on a possibly-incorrect diagnosis, leaving early for an appointment because traffic might be bad. Which Type — I or II — are you more averse to in each case? The answer reveals your implicit α; once you see it, you can ask whether it's calibrated to the actual costs.
Hint
Most of your daily decisions have a Type I and a Type II side. The skill is naming them, weighing their costs, and choosing an α that matches the weighting — rather than defaulting to 'whatever feels right in the moment.'

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.