Proof By Contradiction¶
Core Idea¶
Establish a claim by assuming its negation, deriving consequences under the system's accepted rules, and showing they include an impossibility — at which point the negation must be false and the claim must hold.
How would you explain it like I'm…
Pretend the Opposite
Assume the Opposite
Assume False, Hit Impossible
Broad Use¶
- Mathematics: Euclid's infinitude of primes, the irrationality of √2, Cantor's diagonal argument.
- Software debugging: Assume "the bug is in module X," predict what else must be true, and reject when the logs falsify it; bisection is serial contradiction.
- Formal verification: Solvers prove unsatisfiability — the negation has no model.
- Engineering and physics: "This design cannot work" derives a conservation-law violation from the design's assumptions.
- Economics: No-arbitrage arguments show a persisting price gap would yield unbounded profit, contradicting equilibrium.
- Law: Reductio arguments show a proposed rule would entail an absurd or unconstitutional consequence.
- Philosophy: Reductio ad absurdum refutes a claim by deriving absurd consequences from it.
Clarity¶
Forces the distinction between deriving consequences of the negation and deriving consequences of the claim, exposing question-begging where a prover assumes the claim to demonstrate it.
Manages Complexity¶
Converts an open-ended forward search ("derive the claim somehow") into a bounded one ("derive any contradiction from the negation"), often easier because the negation is more concrete than the affirmation.
Abstract Reasoning¶
The asymmetry of refutation and confirmation: one contradiction refutes, while no amount of consistent consequence confirms — the structural basis of falsifiability.
Knowledge Transfer¶
- Math → engineering: The reductio becomes design rejection — assume the design works, derive a thermodynamic violation, reject — only the "rules" differ.
- No-arbitrage → security: "If this gap/vulnerability existed, what unbounded consequence follows?" is the same proof as a privilege-escalation chain.
- Philosophy → strategy: The pre-mortem ("assume the launch failed; what story do we tell?") is reductio applied to forward planning.
Example¶
To prove √2 irrational, assume √2 = a/b in lowest terms; squaring forces a and b to both be even, contradicting "lowest terms" — the impossibility is genuinely discovered, not planted.
Relationships to Other Abstractions¶
Current abstraction Proof By Contradiction Prime
Parents (2) — more general patterns this builds on
-
Proof By Contradiction is a kind of Deductive Reasoning Prime
Proof by contradiction is the deductive strategy that assumes a target's negation, derives impossibility, and discharges that temporary assumption.
-
Proof By Contradiction is part of Contradiction Prime
Proof by contradiction contains a derived contradiction as the discharge condition that makes rejecting the temporary negated assumption valid.
Children (4) — more specific cases that build on this
-
Auxiliary function Domain-specific is a kind of Proof By Contradiction
The proposed strict upward parent is
prime:proof_by_contradiction. -
Markov's Principle Domain-specific is a kind of Proof By Contradiction
The accepted reference-grade review places Markov's Principle under Proof By Contradiction because the child instantiates or depends on the parent's broader structure while retaining its own constitutive identity.
-
Strategy-stealing argument Domain-specific is a kind of Proof By Contradiction
The proposed strict upward parent is
prime:proof_by_contradiction. -
Vitali set Domain-specific is a kind of Proof By Contradiction
The proposed strict upward parent is
prime:proof_by_contradiction.
Hierarchy paths (2) — routes to 2 parentless roots
- Proof By Contradiction → Deductive Reasoning
- Proof By Contradiction → Contradiction
Not to Be Confused With¶
- Proof by Contradiction is not Dialectic because contradiction refutes the negation outright, whereas dialectic synthesizes opposing positions into a higher resolution preserving something of both.
- Proof by Contradiction is not Paradox because it deliberately constructs a contradiction to discharge an assumption, whereas a paradox is a standing contradiction with no accepted resolution.
- Proof by Contradiction is not Deductive Reasoning in general because it is one strategy — assume the negation, derive falsity — whereas deduction includes the complementary direct, forward proof.