Example 1 — Disease screening
EasyProblem
A test screens for a disease. : patient is healthy. The test flags a healthy patient as sick. Which error is this?
Solution
-
Truth is 'healthy' ( true), but the test rejected by declaring sickness.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I classifying a wrong decision by comparing what the test concluded against what is actually true?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Match the decision (reject ) against the truth ( true): rejecting a true null.
The rule is chosen only after the structure matches, so the steps mean something.
-
Rejecting a true null is the false-positive case.
Keep units, shape, or answer form tied to the story so the work does not become symbol pushing.
-
Check the answer against the original question.
It should fit the mental model — false alarm versus missed detection. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Type I error
Takeaway: When the test acts against a null that is actually true, it's a Type I (false-positive) error.