Exercise 7.1 — Question 5
Mathematical Induction is a proof technique used to establish that a statement P ( n ) is true for all positive integers n . It consists of three steps:
Base Case: Verify that P ( 1 ) (or the initial value) is true.
Inductive Hypothesis: Assume P ( k ) is true for some arbitrary positive integer k .
Inductive Step: Using the hypothesis, prove that P ( k + 1 ) is also true.
Conclusion: Since P ( 1 ) is true and P ( k ) ⇒ P ( k + 1 ) , by the Principle of Mathematical Induction, P ( n ) is true for all n ∈ N .
Statement: Prove that for all n ∈ N :
1 2 + 2 2 + 3 2 + ⋯ + n 2 = 6 n ( n + 1 ) ( 2 n + 1 )
LHS: 1 2 = 1
RHS: 6 1 ( 1 + 1 ) ( 2 ⋅ 1 + 1 ) = 6 1 ⋅ 2 ⋅ 3 = 6 6 = 1
Since LHS = RHS = 1 , the statement is true for n = 1 .
Assume the statement is true for n = k , i.e., assume:
1 2 + 2 2 + 3 2 + ⋯ + k 2 = 6 k ( k + 1 ) ( 2 k + 1 )
We need to show:
1 2 + 2 2 + ⋯ + k 2 + ( k + 1 ) 2 = 6 ( k + 1 ) ( k + 2 ) ( 2 k + 3 )
Starting from the LHS:
use hypothesis 1 2 + 2 2 + ⋯ + k 2 + ( k + 1 ) 2
= 6 k ( k + 1 ) ( 2 k + 1 ) + ( k + 1 ) 2
= 6 k ( k + 1 ) ( 2 k + 1 ) + 6 6 ( k + 1 ) 2
= 6 ( k + 1 ) [ k ( 2 k + 1 ) + 6 ( k + 1 ) ]
= 6 ( k + 1 ) [ 2 k 2 + k + 6 k + 6 ]
= 6 ( k + 1 ) ( 2 k 2 + 7 k + 6 )
Factorise 2 k 2 + 7 k + 6 :
2 k 2 + 7 k + 6 = ( k + 2 ) ( 2 k + 3 )
Therefore:
= 6 ( k + 1 ) ( k + 2 ) ( 2 k + 3 )
This is exactly the RHS for n = k + 1 . ✓
Since the statement holds for n = 1 (base case), and assuming it holds for n = k implies it holds for n = k + 1 (inductive step), by the Principle of Mathematical Induction , the statement
1 2 + 2 2 + 3 2 + ⋯ + n 2 = 6 n ( n + 1 ) ( 2 n + 1 )
is true for all n ∈ N .