Exercise 7.1 — Question 3
To prove a statement P ( n ) by Mathematical Induction , follow three steps:
Base Case: Verify 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 P ( k + 1 ) is 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 positive integers 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:
by hypothesis 1 2 + 2 2 + ⋯ + k 2 + ( k + 1 ) 2 = 6 k ( k + 1 ) ( 2 k + 1 ) + ( k + 1 ) 2
Factor out ( k + 1 ) :
= ( k + 1 ) [ 6 k ( 2 k + 1 ) + ( k + 1 ) ]
= ( k + 1 ) [ 6 k ( 2 k + 1 ) + 6 ( k + 1 ) ]
Expand the numerator:
k ( 2 k + 1 ) + 6 ( k + 1 ) = 2 k 2 + k + 6 k + 6 = 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 positive integers n .