Study Guide

Proof techniques (HL only)

IB Mathematics: Analysis and Approaches HLΒ· Unit 1: Number & Algebra, Topic 6Β· 25 min read

1. Direct Proof & Proof by Contrapositiveβ˜…β˜…β˜†β˜†β˜†β± 6 min

πŸ“˜ Definition

Direct Proof

A proof that starts from accepted true axioms or assumptions, and uses sequential logical steps to reach the desired conclusion.

Example:

Proving the sum of two even integers is even

For statements of the form , direct proof assumes is true, then shows must follow. This works best when assumptions are easy to work with directly. When the negation of and are simpler to use, we use proof by contrapositive.

πŸ“˜ Definition

Proof by Contrapositive

Uses the logical equivalence . Instead of proving the original statement, we prove the contrapositive is true.

Example:

Proving if is even, is even

πŸ“ Worked Example

Prove that if is even, then is even.

  1. 1

    Original statement is , where even, even. The contrapositive is : if is odd, then is odd.

  2. 2

    Assume is odd, so we can write it as:

  3. 3
    n=2k+1 for some integer kn = 2k + 1 \text{ for some integer } k
  4. 4

    Square both sides:

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

    Since is an integer, is odd. The contrapositive is true, so the original statement is true.

2. Proof by Contradictionβ˜…β˜…β˜…β˜†β˜†β± 7 min

πŸ“˜ Definition

Proof by Contradiction

To prove a statement is true, you first assume is false, then show this assumption leads to a clear logical contradiction. This means the original assumption is wrong, so must be true.

Example:

Proving is irrational

Contradiction is particularly useful for proving statements about irrationality, infinity, and non-existence, which are hard to prove directly. The method works by ruling out the only alternative to your claim.

πŸ“ Worked Example

Prove that is irrational.

  1. 1

    Assume for contradiction that is rational, so we can write it in lowest terms as:

  2. 2
    2=pq,p,q coprime integers,q>0\sqrt{2} = \frac{p}{q}, \quad p,q \text{ coprime integers}, q > 0
  3. 3

    Square both sides and rearrange:

  4. 4
    p2=2q2p^2 = 2q^2
  5. 5

    This means is even, so must be even. Let for some integer , substitute back:

  6. 6
    (2k)2=2q2β€…β€ŠβŸΉβ€…β€Š4k2=2q2β€…β€ŠβŸΉβ€…β€Šq2=2k2(2k)^2 = 2q^2 \implies 4k^2 = 2q^2 \implies q^2 = 2k^2
  7. 7

    By the same logic, is even so is even. This is a contradiction: we assumed and are coprime, but both are even so share a factor of 2.

  8. 8

    Therefore, the original assumption that is rational is false, so is irrational.

3. Principle of Mathematical Inductionβ˜…β˜…β˜…β˜…β˜†HL only⏱ 8 min

πŸ“˜ Definition

Mathematical Induction

A technique to prove statements that hold for all integers , consisting of three core logical steps: base case, inductive hypothesis, and inductive step.

Induction is one of the most frequently tested proof techniques in IB AA HL, used for summation formulas, divisibility statements, inequalities, and recursive sequence results.

πŸ“ Worked Example

Prove by induction that for all positive integers , .

  1. 1

    Step 1: Base case, test :

  2. 2
    LHS=1,RHS=1(1+1)2=1\text{LHS} = 1, \quad \text{RHS} = \frac{1(1+1)}{2} = 1
  3. 3

    The statement holds for , so base case is proven.

  4. 4

    Step 2: Inductive hypothesis: assume the statement holds for , for some positive integer :

  5. 5
    βˆ‘r=1kr=k(k+1)2\sum_{r=1}^k r = \frac{k(k+1)}{2}
  6. 6

    Step 3: Inductive step: prove the statement holds for :

  7. 7
    βˆ‘r=1k+1r=βˆ‘r=1kr+(k+1)\sum_{r=1}^{k+1} r = \sum_{r=1}^k r + (k+1)
  8. 8

    Substitute the inductive hypothesis and simplify:

  9. 9
    =k(k+1)2+(k+1)=(k+1)(k2+1)=(k+1)(k+2)2= \frac{k(k+1)}{2} + (k+1) = (k+1)\left(\frac{k}{2} + 1\right) = \frac{(k+1)(k+2)}{2}
  10. 10

    This matches the formula for , so if the statement holds for , it holds for . By the principle of mathematical induction, the statement is true for all positive integers .

4. Identifying Invalid Proofsβ˜…β˜…β˜…β˜†β˜†β± 4 min

IB exams often ask you to spot errors in incomplete or invalid proofs. The most common invalid arguments rely on incorrect logic, even if the final conclusion is right.

βœ“ Quick check

Which of the following is a valid proof that the sum of two even numbers is even?

    • I tested 2+4=6 (even), 8+12=20 (even), so the rule is true

    • If and are even, and for integers , so , which is even by definition

    • All even numbers I checked work, so the statement must be true

    Reveal answer
    1 β€”

    Correct! This is a general direct proof that works for all even numbers. Testing specific cases never proves a general statement.

5. Common Pitfalls

Wrong move:

Prove a general statement by checking specific examples

Why:

A statement is only proven if it holds for all cases, not just the ones you tested

Correct move:

Use a general argument that applies to all values satisfying the problem's assumptions

Wrong move:

Skip writing the inductive hypothesis or final conclusion for induction

Why:

IB examiners award explicit marks for these steps, even if the algebra is correct

Correct move:

Always write 'assume the statement holds for ' and end with 'by induction, the statement holds for all '

Wrong move:

Divide by a variable without checking it cannot equal zero

Why:

Division by zero is undefined, which creates a fatal flaw in your proof

Correct move:

Explicitly confirm the variable is non-zero before dividing, or handle the zero case separately

Wrong move:

Mix up contrapositive and contradiction

Why:

They are logically related but distinct methods, misapplication leads to invalid proofs

Correct move:

Remember: contrapositive proves by proving ; contradiction assumes and derives a contradiction

Wrong move:

Assume what you are trying to prove (circular reasoning)

Why:

This means your proof does not actually demonstrate the result

Correct move:

Always start from known true statements and work towards the conclusion you need to prove

6. Quick Reference Cheatsheet

Proof Technique

When to Use

Core Steps

Direct Proof

Working forward from assumptions is straightforward

  1. Assume true 2. Derive logically

Contrapositive

Prove , negation is easier to use

  1. State contrapositive 2. Prove directly

Contradiction

Prove irrationality, non-existence, or negative claims

  1. Assume claim false 2. Derive contradiction 3. Conclude original claim true

Induction

Prove for all integers

  1. Prove base case 2. Assume true for 3. Prove for 4. Conclude by induction

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2021 Β· 1

    Proof by contradiction of irrationality

  • 2022 Β· 1

    Induction for divisibility

  • 2023 Β· 2

    Proof by contrapositive

What's Next

Proof techniques are the foundation of all advanced mathematics, and they appear throughout the IB AA HL course, from calculus to complex numbers. Mastering these techniques will help you construct logical arguments for extended response questions, which carry a large proportion of marks in HL papers. You will encounter induction again when working with sequences, series, and recursive functions, while contradiction and contrapositive are used in topics like number theory and calculus. Building a strong understanding of proof will also prepare you for university-level mathematics studies.