4. Proof by Contradiction0%

Methods of Proof · Topic 4 of 5

4. Proof by Contradiction

Video coming soon3 worked examples

Theory

Some statements are hard to prove directly but easy to prove by ruling out the alternative. In proof by contradiction you assume the statement is false, then reason until you reach something impossible. Since the reasoning was sound, the only faulty step must have been the assumption — so the original statement is true.

To prove “if AA then BB”, assume AA is true and BB is false, and derive a contradiction. The classic results proved this way are that 2\sqrt{2} is irrational and that there are infinitely many primes.

The most-used tool is the representation of integers: an even number is 2k2k and an odd number is 2k+12k+1 (or 2k12k-1) for integer kk. Squaring these keeps the parity visible.

The Golden Rule: state the assumption explicitly — “Assume, for contradiction, that…” — carry it through until two statements directly conflict, then name the contradiction before concluding. The examiner is looking for that named clash.

⚠️ Common Examiner Traps

  • Negating the statement wrongly: the opposite of “nn is even” is “nn is odd”, and you must assume that alongside the given hypothesis, not instead of it.
  • Never actually reaching a contradiction: the proof only works once you point to two things that cannot both be true. Circular reasoning that never conflicts proves nothing.
  • Confusing it with contrapositive: contradiction assumes the hypothesis and the negated conclusion; contrapositive proves “not BB implies not AA” directly, with no assumption of AA.
  • Rushing the conclusion: after the contradiction, state plainly that the assumption was false and therefore the original statement holds.

Worked examples

Example 1

Prove by contradiction that if n2n^2 is even, then nn is even (for nNn \in \mathbb{N}).

Step 1: Assume, for contradiction, that n2n^2 is even but nn is odd.

Step 2: If nn is odd, write n=2k+1n = 2k + 1 for some integer kk. Then:

n2=(2k+1)2=4k2+4k+1=2(2k2+2k)+1n^2 = (2k+1)^2 = 4k^2 + 4k + 1 = 2(2k^2 + 2k) + 1

Step 3: This has the form 2m+12m + 1, so n2n^2 is odd.

Step 4: But we assumed n2n^2 was even. It cannot be both even and odd — a contradiction. Therefore the assumption that nn is odd is false, so nn must be even.

Example 2

Prove by contradiction that 2\sqrt{2} is irrational.

Step 1: Assume, for contradiction, that 2\sqrt{2} is rational. Then it can be written as a fraction in lowest terms:

2=ab,a,bZ,b0,with no common factor\sqrt{2} = \frac{a}{b}, \qquad a, b \in \mathbb{Z}, \quad b \neq 0, \quad \text{with no common factor}

Step 2: Square both sides and rearrange:

2=a2b2    a2=2b22 = \frac{a^2}{b^2} \implies a^2 = 2b^2

Step 3: So a2a^2 is even, which (by the previous result) means aa is even. Write a=2ca = 2c:

(2c)2=2b2    4c2=2b2    b2=2c2(2c)^2 = 2b^2 \implies 4c^2 = 2b^2 \implies b^2 = 2c^2

Step 4: Then b2b^2 is even, so bb is even too.

Step 5: But now aa and bb are both even, so they share a factor of 22 — contradicting the assumption that the fraction was in lowest terms. Therefore 2\sqrt{2} cannot be written as such a fraction, so it is irrational.

Example 3

Prove by contradiction that if 7n7n is even, then nn is even (for nNn \in \mathbb{N}).

Step 1: Assume, for contradiction, that 7n7n is even but nn is odd.

Step 2: If nn is odd, write n=2k+1n = 2k + 1:

7n=7(2k+1)=14k+7=2(7k+3)+17n = 7(2k + 1) = 14k + 7 = 2(7k + 3) + 1

Step 3: This has the form 2m+12m + 1, so 7n7n is odd.

Step 4: This contradicts the assumption that 7n7n is even. Hence nn cannot be odd, so nn is even.