Mei Conference 2013: What Can You Prove by Induction?
Mei Conference 2013: What Can You Prove by Induction?
Mei Conference 2013: What Can You Prove by Induction?
Martyn Parker
M.J.Parker@keele.ac.uk
Contents
Contents iii
1 Splitting Coins . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
2 Convex Polygons . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
3 Tower of Hanoi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
4 Money . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
5 Coins — rearranging . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
6 Goodstein’s Theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
S PLITTING C OINS
5 × 2 = 10.
1 × 1 = 1.
3 × 2 = 6.
1 × 1 = 1.
2 × 1 = 2.
1 × 1 = 1.
We get 10 + 1 + 6 + 1 + 2 + 1 = 21.
Q UESTION 1
Complete the table below computing the final total a few times splitting the piles in different ways. How does the
final total depend on the way you split the piles at each stage?
Contents Page 1
Coins Final total
1 0
2
3
4
5
6
7 21,
8
9
10
Contents Page 2
2 C ONVEX P OLYGONS
C ONVEX P OLYGONS
The sum of the interior angles in any n -sided convex polygon is exactly 180(n − 2) degrees, for all n ≥ 3.
Let P (n ) be the proposition that sum of the interior angles in any n-sided convex polygon is exactly 180(n − 2)
degrees.
Base case n = 3. A 3-sided polygon is a triangle, whose interior angles were shown always to sum to 180 de-
grees by Euclid.
Induction hypothesis Suppose that P (k ) holds for some k ≥ 3. That is, the interior angles in any k -sided convex
polygon is exactly 180(n − 2) degrees.
Induction step We must show that P (k + 1) is true. That is, the interior angles of any k + 1-sided convex polygon
is exactly 180(k + 1 − 2) = 180(k − 1) degrees,
Let X be any (k + 1)-vertex convex polygon, say with successive vertices x 1 , x 2 , . . . , x k +1 .
Let Y be the polygon with vertices x 1 , x 2 , . . . , x m . That is, Y is obtained by cutting out one vertex from X .
Now Y is also a convex polygon (proof?), so by the induction hypothesis P (k ), the sum of the interior
angles of Y is 180(k − 2).
Now let T be the triangle with vertices x k , x k +1 , x 1 . The sum of the interior angles in X is the sum of those
in Y plus the sum of those in T . (Proof?)
So the sum of the interior angles in X is
180(k − 2) + 180 = 180((k + 1) − 2) = 180(k − 1).
Since X was arbitrary, we conclude that the sum of the interior angles of any (k + 1)-sided convex polygon
is 180((k − 2) + 1) = 180(k − 1). That is, P (k + 1) holds.
Conclusion Thefore, P (1) is true and if P (k ) is true, then P (k + 1) is true. Therefore, by the princple of mathe-
matical induction, P (n ) is true for all natural numbers n .
Contents Page 3
3 TOWER OF H ANOI
TOWER OF H ANOI
Suppose there are n different sized discs which can be placed in three heaps 1, 2 and 3. A disc may be moved
legally from the top of one heap to the top of another heap provided that it is not placed on top of a smaller disc.
Initially the discs are all on heap 1; with the largest at the bottom and in decreasing order of size up the pile.
The other two piles are empty. Prove there exists a sequence of legal moves which will transfer all the discs to a
different heap.
Let P (n ) be the proposition that there exists a sequence of legal moves that transfer n discs from heap 1 to a
different heap.
Base case Given one disc on heap 1, we move it to either heap 2 or heap 3 in one move. Therefore, P (1) is
true.
Induction hypothesis: Suppose P (k ) is true for some k ≥ 1. That is, there exists a sequence of legal moves
that transfer k discs from heap 1 to either heap 2 or heap 3. (Remember there is nothing special about the
numbering of a the heaps.)
Induction step We need to prove that P (k + 1) is true; that is, there exists a sequence of legal moves that
transfer k + 1 discs from heap 1 to a different heap.
By the induction hypothesis there is a sequence of legal moves that transfer the top k discs on heap 1 to a
different heap, in particular heap 2.
By the induction hypothesis again we can move the k discs on heap 2 to heap 3 in a sequence of legal
moves.
Contents Page 4
We have now performed a sequence of legal moves that transfer the k + 1 discs from heap 1 to a different
heap. Therefore, P (k + 1) is true.
Conclusion: Hence, P (1) is true and if P (k ) is true, then P (k + 1) is true. Therefore, by the priciple of mathe-
matical induction P (n ) is true for all natural numbers n .
Contents Page 5
4 M ONEY
M ONEY
Suppose you have an infinite supply of 2p and 5p coins. Prove that you can obtain n pence using only 2p and 5p
coins for all n ≥ 4.
Induction hypothesis Assume that P (k ) holds for some k ≥ 4. That is, k pence can be obtained using only 2p
and 5p coins.
Induction step We must show that P (k + 1) is true; that is, k + 1 pence can be obtained using only 2p and 5p
coins.
Firstly suppose there is a 5p coin used to create the k pence.
Contents Page 6
Now suppose there are no 5p coins used to create the k pence (for example if k = 4).
In this case we remove two 2p coins which must be present since k ≥ 4 and replace them with one 5p coin.
Conclusion Therefore P (4) is true and if P (k ) is true, then P (k + 1) is true. Hence by the Principle of Mathe-
matical Induction, the proposition P (n ) is true for all value of the natural number n ≥ 4.
Contents Page 7
5 C OINS — REARRANGING
C OINS
You have a collection of coins. You want to arrange them in continuous rows so each coin touches 2 coins below.
How many different ways are there to arrange the coins when you have 2 coins, 3 coins, 4 coins, and so on.
Number of stacks, or arrangements of n pennies in contiguous rows, each touching 2 in row below
We cannot prove anything by induction since we do not have a closed form for the number of ways given n coins.
Contents Page 8
6 G OODSTEIN ’ S T HEOREM
2 3
– 22 + 2 + 1 goes to 33 + 3 + 1.
◁ Subtract one.
3 3
– 33 + 3 + 1 goes to 33 + 3.
3 4
– 33 + 3 goes to 44 + 3.
◁ ’Amazingly to the power of 11’ it is mathematical impossible to prove this result by induction. (It is indepen-
dent of Peano arthimetic.)
Contents Page 9
PART A
I NDUCTION — F URTHER DETAILS
1 I NDUCTION AT A- LEVEL
A RGUMENT 1
This creates a rectangle which is 10 units by 11 units. The number of squares is equal to 10 × 11. However, we
only want half of them so the final total is 10×2 11 . This method clearly generalises to n .
A RGUMENT 2
n
Let s = ∑ r . Then
r =1
s= 1+ 2+ 3+ ... +98 +99 +100
s= 100+ 99+ 98+ ... +3 +2 +1
+
2s = 101 +101 +101 ... +101 +101 +101
Simplifying gives 2s = 100 × 101 since there are 100 lots of 101 on the right-hand side. Thus
100 × 101
s= .
2
This clearly generalises to n .
At A-level, after introducting these motivational arguments, we then tell them to prove the result by mathematical
induction. When asked how convincing the proof by induction is, the response is typically as follows:
◁ Check n = 1, properly!
◁ Assume true for n = k .
◁ Do some algebra to to get n = k + 1 out.
◁ Add some memorised lines at the end.
◁ Smile and move on.
◁ Statement 1:
12 = (−1)(1−1)
1 (1 + 1 )
.
2
◁ Statement 2:
12 − 22 = (−1)(2−1)
2 (2 + 1 )
.
2
◁ Statement 3:
12 − 22 + 32 = (−1)(3−1)
3 (3 + 1 )
.
2
◁ The proposition is asking us to verify an ’infinite number of statements’.
◁ Statement 1: 21 > 1.
◁ Statement 2: 22 > 2.
◁ Statement 3: 23 > 3.
◁ Statement 4: 24 > 4.
◁ ...
d
◁ Statement 1: ( x ) = 1.
dx
d
◁ Statement 2: (x 2 ) = 2x .
dx
d
◁ Statement 3: (x 3 ) = 3x 2 .
dx
d
◁ Statement 4: (x 4 ) = 4x 3 .
dx
◁ ...
◁ Statement 1: 71 − 21 is divisible by 5.
◁ Statement 2: 72 − 22 is divisible by 5.
◁ Statement 3: 73 − 23 is divisible by 5.
◁ Statement 4: 74 − 24 is divisible by 5.
◁ ...
Prove by induction that you can obtain n pence using only 2p and 5p coins for all n ≥ 4.
∣x 1 ∣ + ∣x 2 ∣ + ⋅⋅⋅ + ∣x n ∣ ≥ ∣x 1 + x 2 + . . . + x n ∣
◁ ∣x 1 ∣ ≥ ∣x 1 ∣.
◁ ∣x 1 ∣ + ∣x 2 ∣ ≥ ∣x 1 + x 2 ∣.
◁ ∣ x 1 ∣ + ∣ x 2 ∣ + ∣ x 3 ∣ ≥ ∣ x 1 + x 2 + x 3 ∣.
◁ ...
Suppose there are n different sized discs which can be placed in three heaps 1, 2 and 3. A disc may be moved
legally from the top of one heap to the top of another heap provided that it is not placed on top of a smaller disc.
Initially the discs are all on heap 1; with the largest at the bottom and in decreasing order of size up the pile. The
other two piles are empty. Prove there exists a sequence of legal moves which will transfer all the discs to heap
2.
◁ Given two integers m and n , with n ≠ 0, there exist unique integers q and r such that m = bn + r and
0 ≤ r < ∣n ∣.
◁ Prime factorisation.
◁ Remainder and Factor theorem.
x1 + x2 + . . . + xn √
◁ For x 1 , . . . , x n ∈ R and positive, ≥ n x1 x2 . . . xn .
n
◁ and so on ...
P ROPOSTIONS
12 − 22 + 32 − 42 + . . . + (−1)n −1 n 2 = (−1)n −1
n (n + 1 )
.
2
We want to show:
What happens if we do not perform all the steps required in a proof by mathematical induction?
E XAMPLE
k + 2 = (k + 1 ) + 1
< k +1 By the induction hypothesis
= k + 1.
Therefore, P (k + 1) is true.
Therefore, by the principle of mathematical induction P (n ) is true for all natural numbers n .
In this example we have only prove that if n + 1 < n is true for any value of n , then it is true for all values of n .
However, we have not verified that n + 1 < n is true for any value of n . This means we cannot deduce that n + 1 < n
for all values of n . Since there is no base case the proof fails.
Q UESTION 3
Q UESTION 4
In fact, n 2 + 5n + 1 is odd for all natural numbers n ! Prove this.
Let P (n ) be the proposition that ’for any group of n cows they are all the same colour’
We now have a collection of k cows, which must all the same colour.
The mistake here is that P (k ) does not imply P (k + 1) for any k ≥ 1. In particular, it fails when k = 2, indeed the
implication fails only for this case.
F IBONACCI N UMBERS
Let P (n ) be the proposition that F n = r n −2 for each Fibonacci number smaller than n .
Suppose P (k ) is true. Then F k = r k −2 .
We need to show that P (k + 1) is true; that is F k +1 = r k −1 .
We have
F k +1 = F k + F k −1
= r k −2 + r k −3
= r k −3 (r + 1 )
= r k −3 r 2 since r 2 = r + 1
= r k −1 .
Therefore, P (k + 1) is true.
But we didn’t check P (1) which is false, F 1 = 1, which is not r 1−2 = r −1 .
Q UESTION 5
Where is the mistake in the following proof by induction?
Let F 1 = 0 and F 2 = 1 and define F n +1 = F n + F n −1 for all n ≥ 1. Let P (n ) be the proposition that F r is even 0 ≤ r ≤ n
for all natural numbers n .
Clearly P (1) is true, since F 1 = 0 is even.
Q UESTION 6
What is wrong with the following proof?
Let P (n ) be the proposition that n 2 − n + 41 is prime for all natural numbers n .
We have
12 − 1 + 41 = 41,
22 − 2 + 41 = 43,
32 − 3 + 41 = 47,
42 − 4 + 41 = 53,
52 − 5 + 41 = 61.
Each of these numbers is prime and this pattern clearly continues for each n , so n 2 − n + 41 is prime for all natural
numbers n .
Q UESTION 7
What is wrong with the following proof by induction?
Let P (n ) be the proposition that if n straight lines are drawn across a circular disc, such that no three meet in the
same point, then they divide the disc into 2n −1 parts.
Clearly the pattern for the number of regions continues and we have 2n −1 regions.
S UMMARY
◁ We need to show that the set of values for which P (n ) is true is the same as the set of natural numbers.
◁ We need to verify that P (1) is true.
◁ We need to check that if P (k ) is true, then P (k + 1) is true.
◁ This all has to be written formally.
T ILING A GRID
For all n ≥ 0 there exists a tiling, using only the four L-shaped tiles above, of a 2n × 2n square grid with one square
removed.
For any of these infinitely many boards we are going to show how if precisely one square is removed at random
from such a board, you can always tile what remains using the below tiles!
With a 2 by 2 board this is easy: whichever square is removed you are left with 3 squares which form an L-shape!
We’re now going to show you how it’s done with an 8 by 8 board. Imagine a square has been removed at random.
◁ The trick is to break the board up into four 4 by 4 boards as indicated by the red lines (notice that 4 is one
power of two down from 8). Three of the 4 by 4 boards do not have a square removed.
◁ Place a tile which covers the middle corner square of each of the 4 by 4 boards which have not yet had
a square removed. We now just have the problem of dealing with 4 by 4 boards each with one square
removed!
◁ So, using the same idea as before, break each of these 4 by 4 boards up into four 2 by 2 boards.
◁ In each of the 4 by 4 boards, three of the 2 by 2 boards have no square removed. So place a tile covering
the ‘middle corner’ square of each 2 by 2 board which does not yet have a square removed.
◁ We are left with sixteen 2 by 2 boards, all with a square missing, so slot in one L-shaped tile for each 2 by
2 board!
Written out properly Let P (n ) be the proposition that for any n a 2n × 2n with one square removed can be
covered using only the four tiles
Suppose n = 1 then we have a 2 × 2 board. Removing one square will leave exactly one of the tiles given in the
list. Hence, the board can be covered with on of the tiles in the list.
Suppose that P (k ) is true for some k ≥ 1; that is, a 2k × 2k board with one square removed can be tiled using only
the four given tiles.
Consider a 2k +1 × 2k +1 board. This board consists of 4 copies of a 2k × 2k board. We remove one tile, this must
be contained in one of the four 2k × 2k boards. At the meeting point of the remaining three boards we can use
one of the four permitted tiles to cover the three squares at the meeting point. Hence, we now have four 2k × 2k
boards each with one tile missing.
By the induction hypothesis each of these boards can be tiled using only the four permitted tiles. Hence,
Therefore, the entire 2k +1 × 2k +1 board can be tiled using only the four permitted tiles. Therefore, P (k + 1) is true.
Hence, by the Principle of Mathematical Induction the proposition P (n ) is true for all values of the natural number
n.
TOWER OF H ANOI
Suppose there are n different sized discs which can be placed in three heaps 1, 2 and 3. A disc may be moved
legally from the top of one heap to the top of another heap provided that it is not placed on top of a smaller disc.
Initially the discs are all on heap 1; with the largest at the bottom and in decreasing order of size up the pile. The
other two piles are empty. Prove there exists a sequence of legal moves which will transfer all the discs to heap
3.
A solution to this problem when there are three discs is given by:
Base case In the case of the tower of hanoi, the starting point is n = 1. In this case there is one disc and hence
one move is required to move this disc from heap 1 to heap 3. In this case P (1) is the statement that
the minimum number of moves to move the roof from the left tower to the right tower is 21 − 1 = 1 moves.
Therefore, P (1) is true.
Induction hypothesis Suppose that P (k ) is true for some k ≥ 1. In other words, the minimum number of moves
to required to move k discs from the heap 1 to heap 3 is 2k − 1.
Induction step We now need to show that this supposition allows us to deduce that the minimum number of
moves with k + 1 discs is 2k +1 − 1.
Suppose there are k + 1 discs on heap 1. The induction hypothesis allows us to move the top k disc to heap
3 in a minimum of 2k − 1 moves. But it actually tells us more than this, it tells us we can move the top k disc
from any heap to any different heap in a minimum of 2k − 1 moves. Therefore, by the induction hypothesis
we can move the k discs on the heap 1 to heap 2 in 2k − 1 moves.
We can now move the k + 1th disc (the largest disc) to heap 3. Once we have done this the induction
hypothesis tells us that we can move the k disc on heap 2 to heap 3 in a minimum of 2k − 1 moves.
To complete the induction step we just need to add up the number of moves and check it is what we expect
from P (k + 1). Indeed, the total number of moves is:
2k − 1 + 1 + 2k − 1 = 2×2k −1 = 2k +1 −1.
² ® ²
Move k discs to heap 2 Move large disc to heap 3 Move k discs from heap 2 to heap 3
Conclusion Therefore P (1) is true and if P (k ) is true, then P (k + 1) is true. Hence by the Principle of Mathe-
matical Induction, the proposition P (n ) is true for all value of the natural number n .
I NTEGRATION
Base case (n = 0 or n = 1 both work) Suppose n = 1. Since any 1-element set has 2 subsets, namely the empty
set and the set itself, and 21 = 2, the statement P (1) is true.
Induction hypothesis Suppose the proposition P (k ) is true for some k ≥ 1; that is, any k -element set has 2k
subsets.
Induction step We need to show that P (k + 1) is true; that is, any set with k + 1 elements has 2k +1 subsets.
Let A be a set with k + 1 elements. Let a be an element of A .
Consider A ′ = A − {a }. (That is, the set A ′ is the set A without the element a .) The set A ′ has k elements.
Any subset of A either contains a or it does not.
Those subsets of A are exactly the subsets of A ′ . By the induction hypothesis there are 2k such subsets.
Any subset of A that contains a must have the form B ′ ∪ {a }. That is, it is a subset of A ′ with a included.
There are 2k subsets of A ′ and thus 2k subsets of A that contain a .
Therefore, there are 2k + 2k = 2k +1 subsets of A . This shows that P (k + 1) is true.
Conclusion Hence, P (1) is true and if P (k ) is true, then P (k + 1) is true. Therefore, by the Principle of Mathe-
matical Induction the proposition P (n ) is true for all natural numbers n .
D IFFERENTIATION
(x k ) = kx k −1 .
d
dx
(x k +1 ) = (k + 1)x k .
d
dx
Using the product rule we have
( x k +1 )
d d
= (x k × x )
dx dx
d d
= (x k ) × x + x k (x )
dx dx
= k × x k −1 × x + x k × 1
= x k (k + 1 )
Here the induction hypothesis is used for the third equality. Hence, P (k + 1) is true.
Conclusion Hence, P (1) is true and if P (k ) is true, then P (k + 1) is true. Therefore, by the Principle of Mathe-
matical Induction the proposition is true for all natural numbers n .
I NEQUALITIES
Base case When n = 3, we have 2 × 3 + 1 = 7. Moreover, 23 = 8. Therefore, the proposition is true when n = 3.
2k + 1 < 2k
2k + 3 = 2(k + 1) + 1 < 2k +1
When n = k + 1.
2 (k + 1 ) + 1 = 2k + 2 + 1
= 2k + 1 + 2
< 2k + 2
< 2k + 2k
= 2 × 2k
= 2 k +1
Here the induction hypothesis is used for the first inequality. The second inequality follows since 2 < 2k for
k ≥ 3. Hence, P (k + 1) is true.
Conclusion Hence, P (1) is true and if P (k ) is true, then P (k + 1) is true. Therefore, by the Principle of Mathe-
matical Induction the proposition is true for all natural numbers n ≥ 3.
Base case Suppose n = 1, then f (1) = 71 − 21 = 5. This is clearly divisible by 5. Therefore, the proposition is true
when n = 1.
Induction hypothesis Suppose the proposition P (k ) is true for some k ≥ 1; that is,
f (k ) = 7 k − 2 k
f (k + 1) = 7k +1 − 2k +1
is divisible by 5.
When n = k + 1 it follows that
f (k + 1 ) − f (k ) = 7k +1 − 2k +1 − (7k − 2k )
= 7k +1 − 7k − 2k +1 + 2k
= 7k × (7 − 1) − 2k × (2 − 1)
= 6 × 7k − 2k
= (5 + 1) × 7k − 2k
= 5 × 7k + 7k − 2k
= 5 × 7 k + f (k ).
Conclusion Hence P (1) is true and if P (k ) is true, then P (k + 1) is true. Therefore, by the Principle of Mathe-
matical Induction the proposition P (n ) is true for all natural numbers n .
S EQUENCES
(13 × 7n −1 ) + 1
un =
2
for all natural numbers n .
Induction hypothesis Suppose the proposition P (k ) is true for some k ≥ 1; that is,
(13 × 7k −1 ) + 1
uk =
2
(13 × 7k ) + 1
u k +1 = .
2
The definition of the sequence (u n ) implies that:
u k +1 = 7u k − 3
(13 × 7k −1 ) + 1
= 7( )−3
2
k
13 × 7 + 7
= −3
2
13 × 7k + 7 − 6
=
2
13 × 7k + 1
= .
2
The second equality follows from the induction hypothesis. Hence, P (k + 1) is true.
Conclusion Hence, P (1) is true and if P (k ) is true, then P (k + 1) is true. Therefore, by the Principle of Mathe-
matical Induction the proposition P (n ) is true for all natural numbers n .
I NTEGRATION
Induction hypothesis Suppose the proposition P (k ) is true for some k ≥ 0; that is,
∞
∫ x k e −x d x = k!
0
The induction step is performed using integration by parts (which is exactly how you would derive the result
in the first place)!
∞ ∞ ∞
∫ x k +1 e −x d x = [x k +1 × (−e −x )]0 + ∫ e − x (k + 1 ) x k d x
0 0
∞
= 0 + (k + 1 ) ∫ e −x x k d x
0
= (k + 1)k! By the induction hypothesis.
= (k + 1)!
Therefore, P (k + 1) is true.
Conclusion Hence, P (1) is true and if P (k ) is true, then P (k + 1) is true. Therefore, by the Principle of Mathe-
matical Induction the proposition P (n ) is true for all natural numbers n .
3. Deduce that given m ∈ Z there exists a sequence of irrational numbers converging to m . (You may assume
that as n tend to infinity that 31n → 0.)
1 p p3
1. Let y be irrational. Suppose for a contradiction that y 3 = q
where p, q ∈ Z and q ≠ 0. Then y = q3
is a rational
number since p 3 and q 3 ≠ 0 are integers. This contradiction establishes the result.
1
2. Let P (n ) be the proposition that a n = 5 3n is irrational.
√
3
Base case When n = 1 we have a 1 = 5. We are given that this number is irrational, hence P (1) is true.
1
Induction hypothesis Suppose P (k ) is true for some k ≥ 1; that is, then a k = 5 3k is irrational.
1
Induction step We need to prove that a k +1 = 5 3k +1 is irrational. Now
1
1 1 3
5 3k +1 = (5 3k )
1
by the indices laws. By the induction hypothesis 5 3k is irrational and we have proved that the cube root
1
of an irrational number is irrational. Therefore, 5 3k +1 is irrational. Hence P (k ) is true.
Conclusion Hence, P (1) is true and if P (k ) is true, then P (k + 1) is true. Therefore, by the Principal of
Mathematical Induction P (n ) is true for all n ∈ N.
This proof has combined several things we’ve seen before: direct proof, proof by contradiction, proof by induction
and then combining results to prove a new result.
The fact we have assumed 31n → 0 as n → ∞. This is used at A-level when we sum an infinite geometric series
and deduce that
a (1 − x n +1 ) a
→
1−x 1−x
when −1 < x < 1.
F IBONACCI N UMBERS
Every positive integer can be represented as the sum of one or more distinct Fibonacci numbers in such a way
that the sum does not include any two consecutive Fibonacci numbers. (In fact, it is unique, but we don’t prove
this, although it can be done by induction.)
100 = 89 + 8 + 3, yes100 = 89 + 8 + 2 + 1. no
Let P (n ) be the proposition that each integer r with 1 ≤ r ≤ n can be represented as the sum of one of more
distinct Fibonacci numbers, with the sum not including any two consecutive numbers.
Induction hypothesis Now suppose that P (k ) is true for some k ≥ 1. That is, for every positive integer r with
1 ≤ r ≤ k can be represented as the sum of distinct Fibonacci numbers and the sum does not include any
two consecutive Fibonacci numbers.
k + 1 = F i + n = F i + F i −1 + m = F i +1 + m > F i +1 .
This is a contraction, therefore, the representation of n does not contain F i −1 . Therefore P (k + 1) is true.
Conclusion Since P (1) is true and the truth of P (k ) implies the truth of P (k + 1) the principle of mathematical
induction implies that P (n ) holds for all natural numbers n .
1. It is claimed that
F 0 F 1 F 2 . . . F n −1 = F n − 2 (A.1)
for all n ∈ N.
Prove by induction that Equation (A.1) holds for all natural numbers.
2. Hence, deduce that no two Fermat numbers have a common factor greater than 1.
[Hint: You will find it useful to recall that if n is an odd number then the only common factor of n and n − 2 is 1.]
F 0 F 1 F 2 . . . F k −1 = F k − 2.
To prove the fact given in the question, suppose n and n − 2 are divisible by p . Then n = pr for some integer r
and n − 2 = ps for some integer s . Subtracting gives 2 = pr − ps = p (r − s ). Since p and r − s are integers either
p = 1 and r − s = 2 or p = 2 and r − s = 1. Suppose p = 2, then an even number divides into the odd number n . This
contradiction shows that p = 1 giving the result.
P IRATES GOLD
Some pirates have got hold of some gold bars. The gold bars are 2 × 1 units in size. The pirates have boxes which
are 2 × n in size.
The pirates wonder how many different ways there are to arrange the gold in: 2 × 2, 2 × 3, 2, 2 × 5 and 2 × n boxes.
G OLDBACH CONJECTURE
Every even integer greater than 2 can be expressed as the sum of two primes.
Comments:
We might conjecture that: the final total is always 21 n (n − 1). How do we prove this?
S OLUTION TO Q UESTION 2:
12 − 22 + 32 − 42 + . . . + (−1)k −1 k 2 = (−1)k −1
k (k + 1 )
.
2
We need to prove that P (k + 1) is true; that is,
= (−1)k −1
k (k + 1)
+ (−1)k (k + 1)2 (by the induction hypothesis)
2
= (−1) k (k + 1)
[(−1)−1 k + 2(k + 1)]
2
(k + 1)
= (−1)k [−k + 2k + 2]
2
(k + 1)(k + 2)
= (−1)k .
2
Therefore, P (k + 1) is true.
Since P (1) is true and if P (k ) is true, then P (k + 1) is true, the principle of mathematical induction implies P (n ) is true for all natural numbers
n.
S OLUTION TO Q UESTION 3:
◁ Suppose P (k ) is true; that is k 2 + 5k + 1 is even. We need to show that P (k + 1) is true; that is,
(k + 1)2 + 5(k + 1) + 1 = k 2 + 2k + 1 + 5k + 5 + 1 = k 2 + 7k + 7
is even.
Since
k 2 + 7k + 7 = k 2 + 5k + 1 + (2k + 6) = k 2 + 5k + 1 + 2 (k + 3 )
´¹¹ ¹ ¹ ¹ ¹ ¹ ¹ ¹ ¹ ¸¹¹ ¹ ¹ ¹ ¹ ¹ ¹ ¹ ¹ ¶ ´¹¹ ¹ ¹ ¹ ¹ ¸ ¹ ¹ ¹ ¹ ¹ ¶
Assumed to be even even
it follows that k 2 + 7k + 7 is even. Indeed, since we’ve assumed P (k ) is true, k 2 + 5k + 1 is even and 2(k + 3) is even and the sum of
two even numbers is even. Therefore, P (k + 1) is true.
◁ Suppose P (k ) is true; that is k 2 + 5k + 1 is odd. We need to show that P (k + 1) is true; that is,
(k + 1)2 + 5(k + 1) + 1 = k 2 + 2k + 1 + 5k + 5 + 1 = k 2 + 7k + 7
is odd.
Since
k 2 + 7k + 7 = k 2 + 5k + 1 + (2k + 6) = k 2 + 5k + 1 + 2 (k + 3 )
´¹¹ ¹ ¹ ¹ ¹ ¹ ¹ ¹ ¹ ¸¹¹ ¹ ¹ ¹ ¹ ¹ ¹ ¹ ¹ ¶ ´¹¹ ¹ ¹ ¹ ¹ ¸ ¹ ¹ ¹ ¹ ¹ ¶
Assumed to be odd even
it follows that k 2 + 7k + 7 is odd. Indeed, by the induction hypothesis k 2 + 5k + 1 is odd and 2(k + 3) is even and the sum of an even
number and an odd number is odd. Therefore, P (k + 1) is true.
S OLUTION TO Q UESTION 4:
S OLUTION TO Q UESTION 5:
S OLUTION TO Q UESTION 6:
S OLUTION TO Q UESTION 7: