fallacy.wiki

A field guide to the ways reasoning breaks

Broken structure

Denying the antecedent

Also called Inverse error

What it is

From if A then B, and A is false, wrongly concluding B is false. A may not be the only route to B.

In the wild

If she trained she would win; she did not train, so she will not win.

How to answer it

Ask whether the conclusion has any other possible cause.

In depth

Origin and naming

The invalid mirror of affirming the consequent: the second premise negates the 'if' half of a conditional, and from that the 'then' half is denied. Also called inverse error. Alan Turing planted one deliberately in his 1950 paper on machine intelligence as an example of tempting but broken reasoning.

More places it shows up

  1. If the merger goes through, the stock will jump; the merger fell through, so the stock won't move — said the day before earnings.

  2. If we advertise, sales will grow; we're not advertising this quarter, so sales can't grow.

  3. If the code has a bug, the tests fail; the tests pass, so the code is fine — ignoring that the tests only cover half the paths.

  4. If interest rates rise, the housing market cools; rates didn't rise, so the market must be heating up.

How to spot it

  • Notice when the shape is 'if A then B; A didn't happen; so B won't' — ask whether B has other doors.
  • Notice when the argument treats one trigger as if it were the only switch wired to the outcome.
  • Notice when denying the condition is presented as denying the result, even though the result can arrive by another route.

Read more