Proof by Contradiction
Why This Matters
Proof by contradiction (Latin: reductio ad absurdum) is the most flexible non-constructive technique a proof writer has. The structure:
To prove , assume and derive a contradiction. Conclude .
The technique works because, classically, . You exploit the negation by extracting concrete consequences of , then push those consequences until two of them collide.
Recognize proof by contradiction when:
- The conclusion is a non-existence statement ("there is no rational with ", "there are no integer solutions to ...").
- The conclusion is an infinitude statement ("there are infinitely many primes").
- A direct proof requires constructing a witness you cannot see, but a contradiction witness is easy to manipulate.
- The negation has more structure than the original statement. Negating "for all , " yields "there exists with ", an existential witness you can then chase.
Proof by contradiction is closely related to proof by contrapositive ( is equivalent to ) and infinite descent (a particular shape of contradiction that produces an infinite decreasing sequence in ). They are three faces of the same non-constructive impulse.
The Irrationality of
Irrationality of the Square Root of Two (Pythagoreans, c. 500 BCE)
Statement
There is no rational number such that .
Intuition
The proof is the canonical introduction to contradiction: assume is rational, write it in lowest terms, extract a parity contradiction. The argument is clean because the negation (" is rational") gives you a concrete fraction to manipulate, while a direct proof would have to work with the whole real line.
Proof Sketch
Suppose, for contradiction, that with , , and (this last assumption is the load-bearing setup move; without it the argument loops).
Then , so is even, so is even. Write . Then , so , so is even, so is even.
But even and even contradicts . Hence no such exist, and is irrational.
Why It Matters
The Pythagoreans famously hid this result because it broke their philosophical commitment to ratios of whole numbers. The proof became the template for all subsequent irrationality proofs: assume rationality, write in lowest terms, extract a divisibility contradiction. The same shape proves irrational whenever is not a perfect square, and similar arguments handle and (with much more work).
Failure Mode
The proof relies on " even even", which in turn relies on unique prime factorization. Over rings that lack unique factorization (some number-theoretic settings), the parity step does not transfer cleanly and the argument must be adapted.
Also: the lowest-terms hypothesis is essential. Without it the descent loops forever, extracting factors of 2 but never close the contradiction.
Euclid's Infinitude of Primes
Euclid, Elements Book IX Proposition 20
Problem. Show that there are infinitely many prime numbers.
Solution. Suppose, for contradiction, that the set of primes is finite, say .
Consider the integer . Either is prime, or has a prime factor . In the first case is a prime not in the original list (since for every ), contradicting the assumption that the list was exhaustive. In the second case, divides but also divides , so divides , which is impossible.
Either way we reach a contradiction, so the set of primes is infinite.
A frequent confusion: in Euclid's argument is not always prime (the smallest counterexample is ). The proof does not claim is prime; it claims has a prime factor not on the list. This is a standard misreading.
The Logical Structure
A proof by contradiction has three parts:
- Setup. State the negation cleanly. "Suppose, for contradiction, that ." Make the negation concrete: if is "for all , ", then is "there exists with "; fix that explicitly.
- Derivation. Use the assumption to derive consequences, typically two consequences that can be combined into a contradiction. The cleanest contradictions look like , contradicting , or "" derived in some auxiliary structure.
- Closure. State the contradiction explicitly and conclude . Do not leave the contradiction implicit.
The setup move, naming the negation precisely, is where beginners stumble. Negating quantified statements is a mechanical operation but the mechanics are easy to forget under problem-solving pressure.
Worked Example: is Irrational
$\log_2 3$ is irrational
Problem. Show that is not a rational number.
Solution. Suppose, for contradiction, that with positive integers (positive because ).
Then , so . The left side is a power of 2, hence has only the prime 2 in its factorization. The right side is a power of 3, hence has only the prime 3 in its factorization.
By unique factorization in , the only way is , contradicting .
Hence is irrational.
The shape generalizes immediately: is irrational whenever are positive integers with disjoint prime factorizations and .
Common Mistakes
Begging the question
The most common error is assuming, in the contradiction argument, the very statement you are trying to prove. If the "contradiction" relies on itself, the proof is circular. After deriving the contradiction, re-read the proof and check that nothing in the chain assumed .
Negating the wrong scope
Negating "for all in , " gives "there exists in with ", not "for all in , ". The quantifier flips. Beginners sometimes negate just the inner predicate and keep the quantifier. That produces a much stronger statement than the real negation, often unprovable, and the proof stalls.
Stopping at a non-contradiction
A "weird" or "surprising" consequence is not yet a contradiction. The conclusion must be incompatible with something definitely known to be true (an axiom, a theorem, a hypothesis of the problem). Until you state which known fact is contradicted, the proof is incomplete.
Using contradiction when a direct proof is shorter
Many proofs are dressed up as contradiction proofs out of habit when the direct version is cleaner. If your contradiction argument never uses the negation in any essential way (if you could delete the "suppose not" line and the rest still works), the direct proof is better.
Constructive limits
Proof by contradiction relies on the law of excluded middle: . In intuitionistic logic this is rejected, and contradiction proofs of positive existence are not valid: a contradiction proof of "there exists with " does not exhibit the witness. For olympiad and standard mathematics this is irrelevant; for foundations, type theory, and constructive computer science, it matters.
Exercises
Problem
Show that is irrational, following the template of the proof. Where does the parity argument get replaced?
Problem
Show that the equation has no positive integer solutions .
Problem
Prove that there is no continuous bijection (no continuous bijection from the unit interval to the unit square).
Cross-Network Links
- ProofsPath: proof-by-contrapositive is the close cousin: becomes , often producing a cleaner argument with the same logical content; proof-by-infinite-descent is contradiction in number-theoretic disguise (the contradiction is an infinite decreasing sequence of natural numbers); well-ordering-principle is the axiom underwriting infinite-descent contradictions.
- TheoremPath: law-of-large-numbers uses contradiction-style arguments in some classical proofs (the Etemadi proof, for instance, uses subsequence contradictions).
- ComputationPath: contradiction proofs that fail in constructive settings are the boundary case for type theory and proof assistants with intuitionistic foundations.
References
See structured references block. Primary entry points: Velleman
How to Prove It Ch 3 for the technique with worked examples; Hardy
Pure Mathematics Ch 1 for classical irrationality proofs;
Aigner-Ziegler Proofs from THE BOOK for elegant contradiction
arguments throughout; Dummett Elements of Intuitionism for the
constructive critique.