5.1 False Positives and Negatives
More actions
How confident should we be about an apparent signal before we make decisions based upon it? What if we are wrong? These are questions faced by every medical patient, police officer, and president. The answer depends not only on the facts about the signal, but also on the perceived severity of the outcome in the event of an error—a signal falsely identified or inadvertently missed.
The Lesson in Context
This lesson gives students hands-on examples of false positives and negatives through a Jupyter notebook, in which they are asked to make moral judgments on the threshold for a positive test result based on the consequences of a false positive or negative.
Takeaways
After this lesson, students should
- Understand that there is always the inevitability of a trade-off—for a given test, one can reduce the risk of false positives by increasing the risk of false negatives, and vice versa. You make this trade-off when you determine what the threshold is (e.g. convict someone if you're 99% or 70% certain that they're guilty).
- Understand that whether false positive or negative is preferable depends on a human values judgement on the consequences of either: (e.g. "innocent people shouldn't be in jail") and risks (e.g. dangerous people committing more crimes).
- (Data science) Recognise that maximising the overall accuracy of a classification problem may sometimes be undesirable.
- (Data science) Identify where a subtle classification problem may be hidden in a machine learning application.
False Positive/Type I Errors
False Negative/Type II Errors
Threshold
Unless the indicator variable is a perfect indicator of the underlying condition, there will be some probability of false positives and/or false negatives for any given threshold. Choosing a threshold is thus partly a matter of deciding one's relative tolerance for false positives and false negatives; a higher threshold will lead to more false negatives, a lower threshold to more false positives.
Incoming Asteroid
Cancer Treatment
Exemplary Quotes
“We should do what we can about climate change. If we're wrong, and anthropogenic activity is not going to disrupt the climate too much in the end, then putting a lot of money into green energy is bad but not catastrophic. On the other hand, the risks of just letting it happen could be catastrophic. Even if there's only a 25% chance that humans can mitigate climate change significantly, that's worth the trouble.”
“It's true that sometimes seatbelts cause deaths, when people get stuck in them and can't get out. But they more often save lives, so it is prudent to wear your seatbelt whenever you drive.”
“Better that ten guilty persons escape than that one innocent suffer”
“An Iowa couple who welcomed their first baby in July had been preparing to say goodbye to him since about halfway through their pregnancy after doctors diagnosed the unborn child with a terminal brain malformation. However, hours after Drew and Ariann Corpstein's son was born, they learned that he had been misdiagnosed, and that his condition could be managed.”
“In 2009-2011 Toyota recalled millions of vehicles because of a perceived issue of the floor mat catching the accelerator. While Toyota was unsure if it was driver error or the floor mat causing uncontrollable acceleration, they still issued the recall. While driver error was much more likely, the cost of blaming driver error and not issuing a recall for potentially faulty floor mats, customer deaths and inevitable lawsuits, was too high.”
“Source”
There have been many people who still caught the virus even after a "negative" test result. These tests are just unreliable.
After this lesson, students should
- Attitudes
- Given some degree of uncertainty, appreciate that different kinds of errors come with different costs, such that in some cases it is worthwhile to presume the less likely alternative because the error you risk is less costly.
- Concept Acquisition
- False Positive/Type I Errors: A test yields a positive result, but in fact the condition is not present.
- False Negative/Type II Errors: A test yields a negative result, but in fact the condition is present.
- There is always the possibility of a trade-off—for a given test, one can reduce the risk of false positives by increasing the risk of false negatives, and vice versa.
- Good decision-making under uncertainty involves having sufficient signal (an adequate test) and setting your threshold appropriately for the relative costs of false positives and false negatives.
- Concept Application
- Identify false positive (type I) and false negative (type II) errors in scientific and everyday situations.
- Weigh the costs associated with false positives/negatives with the benefits associated with true positives/negatives when making a decision under uncertain conditions.
- Explain how people could come to different decisions or policies as a result of different utilities/values associated with different types of errors, even if they agree about the relevant facts.
Additional Content
You must be logged in to see this content.
