Two Kinds of Mistakes on the Road

September 2, 2026 · Part 5 of 20

Opening Scene

An examiner can make two very different kinds of mistakes, and they’re not equally bad in every situation. Failing a genuinely safe, competent driver is frustrating and unfair to that person, but the road stays safe. Passing a genuinely unsafe driver is a different order of problem entirely — now someone dangerous is licensed and on the road. Both are “wrong,” but they’re wrong in different directions, with very different real-world consequences.

That distinction — two different kinds of wrong, not one undifferentiated category of “mistake” — is exactly what false positives and false negatives capture in model evaluation.

In Plain English

A false positive is when a model predicts something is true (fraud, a disease, a pass) when it actually isn’t. A false negative is when a model predicts something is false when it actually is true — missing a real case entirely. These two error types almost always carry different real-world costs, and treating them as interchangeable, as a single “error rate” often implicitly does, hides which mistake actually matters more for a specific use case.

The Old Way

Before “false positive” and “false negative” had formal statistical names, people already reasoned about asymmetric mistakes constantly:

  • A smoke detector that goes off too often (false positives) versus one that fails to detect a real fire (false negatives) — clearly not equally bad outcomes.
  • A doctor who orders an unnecessary extra test (a false positive) versus one who misses a real diagnosis (a false negative) — different costs, different consequences.
  • A security guard who stops an innocent person by mistake versus one who lets a genuine threat through — not remotely equivalent failures.

In each case, people intuitively understood these were different kinds of wrong long before anyone gave them formal names.

What’s Changing (and Why AI Is the Reason)

  1. AI systems increasingly make automated decisions at scale, which means the cost asymmetry between false positives and false negatives now plays out across thousands or millions of cases, not just one examiner’s occasional mistake — the stakes of getting this balance right have grown accordingly.
  2. Tooling now makes it easy to see the specific tradeoff between these two error types for a given model, rather than requiring manual analysis to uncover which kind of mistake a model tends to make more.
  3. Teams increasingly set the acceptable balance between false positives and false negatives deliberately, based on real-world cost, rather than accepting whatever balance a default model setting happens to produce.

The Metaphor, Fully Extended

Driving TestError Type Concept
Failing a genuinely safe, competent driverA false positive — flagging something that isn’t actually true
Passing a genuinely unsafe driverA false negative — missing something that actually is true
The frustration and unfairness of an unfair failThe real-world cost of a false positive
A dangerous driver now licensed and on the roadThe real-world cost of a false negative
An examiner deliberately choosing to err toward cautionA model deliberately tuned to reduce false negatives, accepting more false positives
Treating every kind of test mistake as equally badTreating false positives and false negatives as interchangeable

For Beginners: What to Actually Do

  • For any model result, ask specifically which kind of mistake is more common, and which kind actually matters more for the real-world use case.
  • Understand that reducing one error type generally increases the other — this tradeoff is fundamental, not a flaw in a specific model.
  • Get comfortable naming a mistake as specifically a false positive or false negative, not just “an error,” since the distinction usually changes what should be done about it.

For Practitioners and Leaders: The Deeper Layer

  • Set the acceptable balance between false positives and false negatives deliberately, based on genuine, quantified real-world cost, not a default threshold left unexamined.
  • Communicate this tradeoff explicitly to stakeholders when presenting model results — a single accuracy number hides exactly this distinction, echoing Article 4’s core point.
  • Revisit the acceptable balance periodically; the real-world cost of each error type can shift over time even if the model itself hasn’t changed.

Quick Recap

  • False positives and false negatives are two distinct kinds of mistakes, usually carrying very different real-world costs.
  • This mirrors familiar asymmetric tradeoffs — smoke detectors, medical tests, security screening — where the two error types are never equally bad.
  • AI systems making automated decisions at scale raise the real-world stakes of this tradeoff considerably.
  • The acceptable balance between the two error types should be a deliberate, cost-based decision, not a default left unexamined.

Where This Fits in the Series

Article 4 covered why a single accuracy number hides real nuance; this article named the two specific kinds of mistakes hiding underneath it. Article 6 looks at a related but different evaluation challenge — grading a model when there’s no clean right or wrong answer at all, just a number to compare.