Clastify logo
Clastify logo
Exam prep
Exemplars
Review
HOT

Proofs

Master IB Math AA Proofs with notes created by examiners and strictly aligned with the syllabus.

IB Syllabus Requirements for Proofs

1.6

Simple deductive proof, equality and identity

1.15.1

Proof by mathematical induction

HL

1.15.2

Proof by contradiction

HL

1.15.3

Counterexamples

HL

1.6

SIMPLE DEDUCTIVE PROOF, EQUALITY AND IDENTITY

Equality, identity, and what a proof is doing

An equation is a mathematical statement saying that two expressions have the same value for particular values of the variable. For example,

3x+1=103x+1=10

, is true only when x=3x=3.

An identity is a mathematical statement saying that two expressions have the same value for every allowed value of the variable. We use \equiv for an identity. For example,

(x2)2x24x+4(x-2)^2 \equiv x^2-4x+4

, is true for all real values of xx.

The equals sign == states equality on a particular line of working. The identity sign \equiv says that the two sides are the same expression written in different forms, across the stated domain. The domain is not a small detail. For example, 1m\frac{1}{m} is not even defined when m=0m=0, where mm is a dimensionless variable, so any proof using it must silently or explicitly exclude values that make denominators zero.

LHS to RHS proof

A deductive proof is a chain of valid mathematical steps that starts from known facts or from one side of a statement and reaches the required conclusion. In a left-hand side (LHS) to right-hand side (RHS) proof, start with the LHS and transform it, line by line, until it is clearly the RHS. You can also go RHS to LHS if that side is easier. What you must not do is write the whole statement at the start as though it has already been proved.

Image

Here is the kind of layout I want you to copy. To show

1m+1+1m2+m1m\frac{1}{m+1}+\frac{1}{m^2+m}\equiv \frac{1}{m}

, begin with one side:

LHS=1m+1+1m(m+1)=mm(m+1)+1m(m+1)=m+1m(m+1)=1m=RHS.\begin{aligned} \text{LHS} &= \frac{1}{m+1}+\frac{1}{m(m+1)}\\ &= \frac{m}{m(m+1)}+\frac{1}{m(m+1)}\\ &= \frac{m+1}{m(m+1)}\\ &= \frac{1}{m}\\ &= \text{RHS}. \end{aligned}

Each line follows from the one before it. That’s the point. You are not just showing algebra; you are showing the reasoning.

Numerical deductive proof

Deductive proof is not only algebraic. You can justify a numerical statement by exact manipulation as well. For example,

14+112=312+112=412=13.\begin{aligned} \frac{1}{4}+\frac{1}{12} &= \frac{3}{12}+\frac{1}{12}\\ &= \frac{4}{12}\\ &= \frac{1}{3}. \end{aligned}

This counts as a proof because it uses exact equivalent fractions. A decimal check such as 0.25+0.08330.3330.25+0.0833\ldots\approx 0.333\ldots can build confidence, but the exact fraction working is the proof.

Algebraic identity proof

For an identity such as

(x3)2+5x26x+14(x-3)^2+5\equiv x^2-6x+14

, the quickest route is usually to expand the more compact side:

LHS=(x3)2+5=x26x+9+5=x26x+14=RHS.\begin{aligned} \text{LHS} &= (x-3)^2+5\\ &= x^2-6x+9+5\\ &= x^2-6x+14\\ &= \text{RHS}. \end{aligned}

Checking x=0x=0 or x=10x=10 would not prove the identity. It would only show that the two sides match for those particular values. A proof of an identity has to handle all allowed values at the same time.

Checking your own result

A check is not usually the proof itself, but it is part of good mathematical practice. After proving an identity, substitute a convenient value to catch arithmetic slips. In the previous identity, x=3x=3 gives LHS =5=5 and RHS =918+14=5=9-18+14=5, so the check supports the proof.

You can also check by reversing the algebra in your head: if the proof used expanding, try factorising or completing the square afterwards. And check the restrictions every time. If your proof involved cancelling m+1m+1, then m=1m=-1 cannot be in the domain. This habit is one place where mathematical reasoning differs from scientific reasoning: in mathematics, once the logic is valid and the assumptions are clear, the conclusion is forced; in science, evidence supports a conclusion but remains open to revision.

1.15.1

PROOF BY MATHEMATICAL INDUCTION

HL

The idea of induction

Proof by mathematical induction is a proof method for statements indexed by consecutive integers. You prove a first case, then prove that any one true case makes the next case true. That locks in every later case. It is built for statements such as

P(n)P(n)

The structure matters. In fact, the structure is the logic. You need three pieces:

  • a base case, which proves the first statement, usually P(1)P(1);
  • an induction hypothesis, which assumes P(k)P(k) is true for an arbitrary positive integer kk;
  • an induction step, which proves that the assumption P(k)P(k) being true forces P(k+1)P(k+1) to be true.

Image

Once those pieces are in place, you can write the conclusion: since P(1)P(1) is true and P(k)P(k+1)P(k)\Rightarrow P(k+1), by mathematical induction P(n)P(n) is true for all

nZ+n\in\mathbb{Z}^+

Don’t confuse this with the inductive method in science. Scientific induction uses many observations to suggest a general rule. Mathematical induction proves a logical chain: the first link is true, every link forces the next link, so the whole infinite chain is secure.

A standard sum proof

Let

P(n):r=1nr=n(n+1)2P(n):\quad \sum_{r=1}^{n} r = \frac{n(n+1)}{2}

For the base case, when n=1n=1,

LHS=1,RHS=1(1+1)2=1\text{LHS}=1,\qquad \text{RHS}=\frac{1(1+1)}{2}=1

so P(1)P(1) is true.

Now assume P(k)P(k) is true for some kZ+k\in\mathbb{Z}^+. So

r=1kr=k(k+1)2\sum_{r=1}^{k} r = \frac{k(k+1)}{2}

Use that assumption to prove P(k+1)P(k+1):

r=1k+1r=r=1kr+(k+1)=k(k+1)2+(k+1)=(k+1)(k2+1)=(k+1)(k+2)2=(k+1)((k+1)+1)2.\begin{aligned} \sum_{r=1}^{k+1} r &= \sum_{r=1}^{k} r +(k+1)\\ &= \frac{k(k+1)}{2}+(k+1)\\ &= (k+1)\left(\frac{k}{2}+1\right)\\ &= \frac{(k+1)(k+2)}{2}\\ &= \frac{(k+1)((k+1)+1)}{2}. \end{aligned}

That is exactly the RHS of P(k+1)P(k+1). Therefore P(1)P(1) is true and P(k)P(k+1)P(k)\Rightarrow P(k+1), so the formula is true for all nZ+n\in\mathbb{Z}^+.

Divisibility proofs by induction

Induction also works cleanly for divisibility. To prove 33 divides 4n14^n-1 for all nZ+n\in\mathbb{Z}^+, let P(n)P(n) be the statement 4n1=3q4^n-1=3q for some integer qq.

Base case: 411=34^1-1=3, so P(1)P(1) is true.

Assume P(k)P(k) is true, so

4k1=3q4^k-1=3q

Then 4k=3q+14^k=3q+1, and

4k+11=44k1=4(3q+1)1=12q+3=3(4q+1).\begin{aligned} 4^{k+1}-1 &= 4\cdot 4^k-1\\ &=4(3q+1)-1\\ &=12q+3\\ &=3(4q+1). \end{aligned}

Since 4q+14q+1 is an integer, 33 divides 4k+114^{k+1}-1. The induction step is complete.

Where induction turns up

The syllabus expects induction to show up across the course, not just as a one-off trick. It can prove formulae for sums of sequences, divisibility results, statements involving powers of complex numbers, and results linked to differentiation. It can also prove algebraic formulae such as binomial coefficient identities.

Sometimes the first true case is not n=1n=1. If the statement begins at n=dn=d, where dd is an integer, prove P(d)P(d) as the base case and then prove P(k)P(k+1)P(k)\Rightarrow P(k+1) for kdk\ge d. The conclusion then starts at n=dn=d, not at n=1n=1.

When proving a sum, don’t just replace every kk by k+1k+1 in the assumed formula and announce success. The induction step must start from the expression for P(k+1)P(k+1), split off the new final term, use the induction hypothesis, and then simplify to the required form.

1.15.2

PROOF BY CONTRADICTION

HL

The shape of a contradiction proof

A proof by contradiction proves a statement by assuming its negation, then reaching something impossible. That impossible result may go against a known theorem, a definition, or an assumption made earlier in the proof.

The logic is simple: a statement is either true or false. If treating it as false leads to an impossibility, the statement has to be true.

Image

A tidy contradiction proof often follows this pattern:

  • State that you are using contradiction.
  • Assume the opposite of what you want to prove.
  • Deduce consequences carefully.
  • Identify the contradiction explicitly.
  • Conclude that the original statement is true.

Irrationality of 3\sqrt{3}

A rational number is a real number that can be written as ab\frac{a}{b}, where a,bZa,b\in\mathbb{Z} and b0b\neq0. An irrational number is a real number that is not rational.

We’ll prove that 3\sqrt{3} is irrational. Suppose, for contradiction, that 3\sqrt{3} is rational. Then

3=ab\sqrt{3}=\frac{a}{b}

Squaring both sides gives

3b2=a23b^2=a^2

So 33 divides a2a^2. Since 33 is prime, 33 divides aa, so we can write a=3ca=3c, where cZc\in\mathbb{Z}. Substitute this into the equation:

3b2=(3c)2=9c23b^2=(3c)^2=9c^2

so

b2=3c2b^2=3c^2

Now 33 divides b2b^2, and again 33 divides bb. We have shown that 33 divides both aa and bb, which contradicts the assumption that ab\frac{a}{b} was in lowest terms. Therefore 3\sqrt{3} is irrational.

The same style proves that 53\sqrt[3]{5} is irrational: assume 53=ab\sqrt[3]{5}=\frac{a}{b} in lowest terms, cube both sides, and use the fact that if prime 55 divides a3a^3, then it divides aa.

Rational plus irrational

Here is a neat contradiction proof: if aa is rational and bb is irrational, then a+ba+b is irrational. Here aa and bb are real numbers.

Suppose instead that a+ba+b is rational. Since aa is rational, the difference

(a+b)a=b(a+b)-a=b

would be rational, because rational numbers are closed under subtraction. But this contradicts the statement that bb is irrational. Hence a+ba+b is irrational.

Infinite primes and proof validity

Euclid's proof that there are infinitely many primes is another famous contradiction. Assume there are only finitely many primes. Multiply them together, add 11, and then ask which prime divides the new number. Any listed prime leaves remainder 11, so the finite list cannot have been complete.

Proofs like this raise a useful TOK point: a mathematical proof is checked by a community for logical validity, not by repeated measurement. The Four-colour theorem is an interesting modern case because its accepted proof used extensive computer checking; it reminds us that certainty in mathematics depends not only on a conclusion being true, but on the proof being communicated and verified convincingly.

1.15.3

COUNTEREXAMPLES

HL

What a counterexample does

A counterexample is a specific case that fits the assumptions of a general statement but makes the conclusion false. One counterexample is enough to disprove a statement that starts with words like 'for all', 'always', or 'no'.

Still, writing down a number by itself won't do. You need to show two things: your example is allowed by the statement, and it makes the statement fail.

Two examples showing the structure of a counterexample.

Universal claimAllowed caseCheckWhy it fails
All numbers in PP are primen=41Nn = 41 \in \mathbb{N}412+4141+41=418341^2 + 41 \cdot 41 + 41 = 41 \cdot 83418341 \cdot 83 has factors other than 1 and itself, so it is not prime
No positive integers satisfy x2+y2=10x^2 + y^2 = 10x=1,y=3x = 1, y = 312+32=101^2 + 3^2 = 10The allowed values do satisfy the equation, so the claim is false

Showing a number pattern is not always prime

Consider the set

P={n2+41n+41:nN}P=\{n^2+41n+41:n\in\mathbb{N}\}

The claim 'all elements of PP are prime' is false.

Take n=41n=41, which is allowed because 41N41\in\mathbb{N}. Then

n2+41n+41=412+412+41=41(41+41+1)=4183n^2+41n+41=41^2+41^2+41=41(41+41+1)=41\cdot83

This number is not prime because it has factors other than 11 and itself. So n=41n=41 is a counterexample.

Disproving a statement about integer solutions

The statement 'there are no positive integer solutions to x2+y2=10x^2+y^2=10' is false.

Then

x2+y2=12+32=1+9=10x^2+y^2=1^2+3^2=1+9=10

The example is allowed, and it satisfies the equation. So it contradicts the word 'no'. That explanation is the key part.

Why examples cannot prove universal statements

A counterexample can disprove a universal statement, but examples can't prove one. A formula might work for n=1n=1, n=2n=2, and n=3n=3, where nn is a natural number, and still fail later. That is why proof methods such as deduction, contradiction, and induction matter: they validate the general claim instead of just giving supporting evidence.

Were those notes helpful?

exponents-and-logarithms Exponents & Logs

sequences-and-series Sequences & Series