Skip to content

Mathematical proof

A mathematical proof is a logically complete argument showing that a statement must be true in every case allowed by its conditions. A calculation can verify one case and many examples can suggest a pattern, but neither proves a general claim.

At A-level you must be able to:

  • prove statements by deduction
  • prove statements by exhaustion
  • prove statements by contradiction
  • disprove a universal statement using a counterexample

The central skill is not memorising four templates. It is recognising what the statement claims, translating its definitions precisely, and choosing an argument that covers exactly the required cases.

You should be able to:

  • expand, factorise and rearrange algebraic expressions
  • use the meanings of integer, factor, multiple, prime, even, odd, rational and irrational
  • distinguish an identity from an equation
  • read implications and inequalities accurately
  • explain why each line of algebra follows from the previous line

Review proof and reasoning if words such as for every, there exists, implies or if and only if are unfamiliar. Review algebraic fluency if expanding and factorising interrupt your reasoning.

Many proof questions have the form

PQ,P\Rightarrow Q,

read as ”PP implies QQ” or “if PP, then QQ”. Here PP is the hypothesis and QQ is the conclusion.

For example:

If an integer nn is divisible by 66, then n2n^2 is divisible by 1212.

The hypothesis permits us to write n=6kn=6k for some kZk\in\mathbb Z. The conclusion is what must be established:

n2=(6k)2=36k2=12(3k2).n^2=(6k)^2=36k^2=12(3k^2).

Since 3k23k^2 is an integer, n2n^2 is divisible by 1212.

That final sentence is essential. The algebra alone shows a form; the definition of divisibility turns the form into the conclusion.

From PQP\Rightarrow Q, you cannot generally conclude QPQ\Rightarrow P.

n divisible by 6n evenn\text{ divisible by }6\Rightarrow n\text{ even}

is true, but its converse is false: 88 is even and is not divisible by 66.

An equivalence requires proof in both directions:

PQP\Leftrightarrow Q

means both PQP\Rightarrow Q and QPQ\Rightarrow P.

MethodCore ideaBest suited to
DeductionStart from known facts and derive the conclusionalgebraic, divisibility and parity claims
ExhaustionSplit a finite set of possibilities into casesparity, remainders and small finite domains
ContradictionAssume the claim is false and derive an impossibilityirrationality and non-existence claims
CounterexampleFind one allowed case where a universal claim failsdisproving statements

The first three establish truth. A counterexample establishes falsity.

Deduction is a direct chain of valid implications. Begin with an arbitrary object satisfying the hypothesis, express the definitions algebraically, and work towards the required conclusion.

Prove that the difference between the squares of two consecutive integers is odd.

Let the consecutive integers be nn and n+1n+1, where nZn\in\mathbb Z. Then

(n+1)2n2=n2+2n+1n2=2n+1.\begin{aligned} (n+1)^2-n^2 &=n^2+2n+1-n^2\\ &=2n+1. \end{aligned}

Since nn is an integer, 2n+12n+1 has the form 2k+12k+1 for an integer kk, namely k=nk=n. Therefore the difference is odd.

The letter nn represents an arbitrary integer, so the proof covers every pair of consecutive integers. Testing 4232=74^2-3^2=7 would cover only one pair.

Prove that n3nn^3-n is divisible by 66 for every integer nn.

Factorise:

n3n=n(n21)=n(n1)(n+1).n^3-n=n(n^2-1)=n(n-1)(n+1).

These are three consecutive integers. Among any three consecutive integers:

  • one is divisible by 33
  • at least one is even, so one is divisible by 22

Therefore their product is divisible by 2×3=62\times3=6. Hence n3nn^3-n is divisible by 66.

This proof combines algebra with established facts about consecutive integers. Saying “the expression contains a factor 66” would be inaccurate because the displayed factorisation does not literally show one factor equal to 66.

Study the full method in proof by deduction and exhaustion.

Exhaustion proves a claim by checking every possible case. It is rigorous only when the cases are mutually exclusive and collectively cover the entire domain.

Prove that the square of any integer leaves remainder 00 or 11 when divided by 44.

Every integer is either even or odd, so these two cases exhaust all possibilities.

Case 1: nn is even. Write n=2kn=2k for some integer kk. Then

n2=4k2,n^2=4k^2,

so n2n^2 leaves remainder 00 when divided by 44.

Case 2: nn is odd. Write n=2k+1n=2k+1. Then

n2=(2k+1)2=4k2+4k+1=4(k2+k)+1,\begin{aligned} n^2&=(2k+1)^2\\ &=4k^2+4k+1\\ &=4(k^2+k)+1, \end{aligned}

so n2n^2 leaves remainder 11 when divided by 44.

Every integer is in exactly one of these cases. Therefore an integer square leaves remainder 00 or 11 modulo 44.

Checking n=0,1,2,3n=0,1,2,3 without explanation is incomplete unless you first justify why these represent all possible remainders modulo 44. Exhaustion is about complete categories, not merely a long list.

In a proof by contradiction, assume the exact negation of the desired result. If valid deductions lead to an impossibility, the assumption is false and the original statement is true.

The structure is

¬PcontradictionP.\neg P\Rightarrow\text{contradiction}\Rightarrow P.

Worked example 4: no smallest positive rational number

Section titled “Worked example 4: no smallest positive rational number”

Prove that there is no smallest positive rational number.

Assume, for contradiction, that there is a smallest positive rational number rr. Since r>0r>0,

0<r2<r.0<\frac r2<r.

Also, if r=a/br=a/b for integers a,ba,b with b0b\ne0, then

r2=a2b,\frac r2=\frac{a}{2b},

so r/2r/2 is rational. We have constructed a positive rational number smaller than the supposed smallest one. This is a contradiction. Therefore no smallest positive rational number exists.

The contradiction must be identified explicitly. A result is not contradictory merely because it is unexpected.

Continue with proof by contradiction, including proofs involving irrational numbers and infinitely many primes.

A statement of the form

for every xS,P(x)\text{for every }x\in S,\quad P(x)

is disproved by one value cSc\in S for which P(c)P(c) is false. The value must satisfy every condition in the claim.

Disprove:

For every integer nn, if n2n^2 is even, then nn is divisible by 44.

Take n=2n=2. Then n2=4n^2=4 is even, so the hypothesis holds, but 22 is not divisible by 44, so the conclusion fails. Therefore n=2n=2 is a counterexample and the statement is false.

A failed hypothesis is not a counterexample. For instance, n=3n=3 does not help because 323^2 is not even. Learn how to choose valid test cases in disproof by counterexample.

Informal intuition is useful for finding a route, but definitions make it rigorous.

PropertyAlgebraic form
nn is evenn=2kn=2k for some kZk\in\mathbb Z
nn is oddn=2k+1n=2k+1 for some kZk\in\mathbb Z
aa divides bbb=akb=ak for some kZk\in\mathbb Z
rr is rationalr=a/br=a/b for a,bZa,b\in\mathbb Z, b0b\ne0
pp is primep>1p>1 and its only positive factors are 11 and pp

Worked example 6: closure of rational numbers

Section titled “Worked example 6: closure of rational numbers”

Prove that the sum of two rational numbers is rational.

Let

x=ab,y=cd,x=\frac ab,\qquad y=\frac cd,

where a,b,c,dZa,b,c,d\in\mathbb Z and b,d0b,d\ne0. Then

x+y=ab+cd=ad+bcbd.x+y=\frac ab+\frac cd=\frac{ad+bc}{bd}.

The numerator ad+bcad+bc and denominator bdbd are integers, and bd0bd\ne0. Thus x+yx+y is a ratio of two integers with a non-zero denominator, so it is rational.

It is not enough to write “rational plus rational is rational” because that merely repeats the claim. The fraction form proves it from the definition.

Examples provide evidence, not universal proof

Section titled “Examples provide evidence, not universal proof”

The first thousand values might fit a pattern while the next one fails. A proof must handle an arbitrary permitted value or a complete set of cases.

Squaring can introduce extra possibilities. From x=3x=3 we may deduce x2=9x^2=9, but from x2=9x^2=9 we obtain x=3x=3 or x=3x=-3. Use \Rightarrow rather than \Leftrightarrow when a step is not reversible.

A sketch can suggest relationships, but it may hide exceptional or badly scaled cases. Convert visual insight into algebra or a justified geometric theorem.

To prove “if PP, then QQ”, start with PP and reach QQ. Starting with QQ and reaching PP proves the converse, which may be false.

Using the statement you are trying to establish is circular reasoning. In contradiction, you assume its negation, not the statement itself.

Which method is most natural for each task?

  1. Prove that the product of two odd integers is odd.
  2. Prove that 3\sqrt{3} is irrational.
  3. Prove a property separately for integers of the forms 3k3k, 3k+13k+1 and 3k+23k+2.
  4. Disprove “all prime numbers are odd”.
Answers
  1. Deduction: write the integers as 2a+12a+1 and 2b+12b+1.
  2. Contradiction: assume 3=a/b\sqrt3=a/b in lowest terms.
  3. Exhaustion: the three forms cover every integer remainder modulo 33.
  4. Counterexample: 22 is prime but is not odd.

Prove that the sum of three consecutive integers is divisible by 33.

Answer

Let the integers be n1n-1, nn and n+1n+1, where nZn\in\mathbb Z. Their sum is

(n1)+n+(n+1)=3n.(n-1)+n+(n+1)=3n.

Since nn is an integer, 3n3n is divisible by 33.

A student writes:

52+1=265^2+1=26, 72+1=507^2+1=50 and 92+1=829^2+1=82, all of which are even. Therefore n2+1n^2+1 is even for every odd integer nn.

Why is this not a proof, and how can it be repaired?

Answer

Three examples do not cover every odd integer. Let n=2k+1n=2k+1, where kZk\in\mathbb Z. Then

n2+1=(2k+1)2+1=4k2+4k+2=2(2k2+2k+1).\begin{aligned} n^2+1&=(2k+1)^2+1\\ &=4k^2+4k+2\\ &=2(2k^2+2k+1). \end{aligned}

The bracket is an integer, so n2+1n^2+1 is even.

Is the statement “for every real xx, x2xx^2\geq x” true? Prove or disprove it.

Answer

It is false. Take x=12x=\tfrac12. Then

x2=14<12=x.x^2=\frac14<\frac12=x.

Thus x=12x=\tfrac12 is a counterexample.

  1. Begin with proof by deduction and exhaustion to turn definitions into direct arguments and construct complete case splits.
  2. Study proof by contradiction to learn precise negation and how an impossible consequence establishes a result.
  3. Finish with disproof by counterexample to distinguish testing from proof and to attack false universal claims efficiently.
  4. Apply the methods in communicating mathematical reasoning, where notation, justification and exam command words are treated explicitly.

When choosing a method, first ask what would settle the statement: a direct chain, a complete finite split, an impossible negation, or one failing case. That decision usually matters more than the algebra that follows.