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

The Blackstone Ratio: Type I vs Type II at Maximum Asymmetry

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

Level 0Stats Novice
0 XP0/55 lessons0/14 achievements
0/100 XP to next level100 XP to go0% complete
"'Better that ten guilty persons escape than that one innocent suffer.' That sentence is the Type I / Type II asymmetry that the entire common-law tradition encodes. Memorize it."

The Quote

The 18th-century English jurist William Blackstone wrote in his Commentaries on the Laws of England (1765–1769):

It is better that ten guilty persons escape than that one innocent suffer.

Blackstone did not invent the principle — it traces back through Roman law and earlier English jurists — but his formulation became the canonical statement. The ratio (10:1) is rhetorical; the principle it encodes is the operational core of due process. Convict the innocent = catastrophic. Acquit the guilty = unfortunate cost the system accepts to avoid the catastrophe.

What the 10:1 Means in Test Terms

The ratio expresses a cost weighting between Type I and Type II errors. If C_I is the cost of a Type I error (wrongful conviction) and C_II is the cost of a Type II error (wrongful acquittal), the Blackstone ratio is essentially saying C_I ≈ 10 × C_II — convicting the innocent is treated as ten times worse than acquitting the guilty.

Given this asymmetric cost, the optimal α for the legal test is set very low. Specifically, you want to reject H₀ only when the evidence is so strong that the expected cost of a Type I error (probability of innocent times the catastrophic cost) is balanced against the expected cost of a Type II error (probability of guilty times the moderate cost). The Blackstone ratio determines that balance, and the result is the very small α called 'beyond reasonable doubt.'

The Ratio Is a Cultural Choice

Different legal traditions have chosen different effective Blackstone ratios. American and English common law roughly preserves Blackstone's 10:1. Some inquisitorial systems use lower ratios; some authoritarian systems implicitly use much higher tolerances for Type I errors (more wrongful convictions accepted in exchange for political control). The ratio is not a mathematical constant; it is a value judgment, and the operational structure of the legal system follows from it.

When a society's effective ratio drifts — through emergency legislation, terror-related laws, or simple political pressure — the system becomes more willing to accept Type I errors. The Blackstone ratio is a kind of moral protection against that drift; the more clearly it is articulated, the harder it is for the drift to happen quietly.

The Principle to Keep

The Blackstone ratio is the most consequential cost asymmetry in any system the citizen lives inside. It is the reason innocent people are not regularly imprisoned by the state. It is the reason the prosecution must produce evidence rather than the defense having to produce innocence. It is the reason 'reasonable doubt' is the standard. When a citizen complains about the system 'letting that monster walk,' they are implicitly proposing a different Blackstone ratio — and the right response is to ask what that different ratio would do to the wrongful-conviction rate.

Code

Blackstone ratio → optimal threshold → wrongful-conviction rate·python
import numpy as np
rng = np.random.default_rng(170)

# Compute the 'optimal' threshold for different Blackstone ratios.
# Assume 5% of accused are innocent, evidence distributions as before.
N = 100_000
p_innocent = 0.05
is_innocent = rng.random(N) < p_innocent
evidence = np.where(
    is_innocent,
    rng.normal(0.4, 0.2, N),
    rng.normal(0.85, 0.15, N),
).clip(0, 1)

print("Different cost weights → different optimal thresholds")
print("  (cost of Type I) : (cost of Type II)  →  best threshold  →  resulting Type I rate (% of convictions)")
print("-" * 90)
for ratio in (1, 2, 5, 10, 20, 100):
    # Brute-force search for the threshold that minimizes weighted total cost.
    best_cost = float('inf')
    best_thr = None
    for thr in np.linspace(0, 1, 101):
        convicted = evidence > thr
        type_I = (convicted & is_innocent).sum()
        type_II = (~convicted & ~is_innocent).sum()
        cost = ratio * type_I + type_II
        if cost < best_cost:
            best_cost, best_thr = cost, thr
    convicted = evidence > best_thr
    type_I = (convicted & is_innocent).sum()
    rate = type_I / max(convicted.sum(), 1) * 100
    print(f"  {ratio:>3}:1                            →  thr={best_thr:.2f}     →  {rate:5.2f}% wrongful conviction rate")

# As the Blackstone ratio rises (Type I treated as more costly),
# the optimal threshold for conviction rises, and the wrongful-conviction
# rate falls. The 10:1 ratio is roughly what common law has chosen as
# the operating point.

External links

Exercise

Name a domain (other than criminal law) where you implicitly apply a Blackstone-like ratio: how much more averse are you to one error type than the other? Examples: (a) hiring — false positive vs false negative; (b) medical treatment — over-treating vs under-treating; (c) parenting decisions — over-protecting vs under-protecting. Make the ratio explicit, then ask whether it matches the actual costs in your situation.
Hint
Most domains have implicit Blackstone ratios that nobody has ever articulated. Articulating them is the first step to calibrating them against actual costs rather than gut feel.

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.