Here is the solution to problem 2 using the Principle of Mathematical Induction.
2. Prove that ∑k=1nk2=6n(n+1)(2n+1), ∀n≥1.
Let P(n) be the statement ∑k=1nk2=6n(n+1)(2n+1).
-
Base Case (n=1):
LHS =∑k=11k2=12=1
RHS =61(1+1)(2(1)+1)=61(2)(3)=66=1
Since LHS = RHS, P(1) is true.
-
Inductive Hypothesis:
Assume P(m) is true for some positive integer m.
That is, assume ∑k=1mk2=6m(m+1)(2m+1).
-
Inductive Step:
We need to prove that P(m+1) is true, i.e., ∑k=1m+1k2=6(m+1)((m+1)+1)(2(m+1)+1)=6(m+1)(m+2)(2m+3).
Consider the LHS of P(m+1):
∑k=1m+1k2=(∑k=1mk2)+(m+1)2
By the Inductive Hypothesis, substitute ∑k=1mk2=6m(m+1)(2m+1):
6m(m+1)(2m+1)+(m+1)2
Factor out (m+1):
(m+1)[6m(2m+1)+(m+1)]
Find a common denominator:
(m+1)[6m(2m+1)+66(m+1)]
(m+1)[62m2+m+6m+6]
(m+1)[62m2+7m+6]
Factor the quadratic 2m2+7m+6:
2m2+7m+6=2m2+4m+3m+6=2m(m+2)+3(m+2)=(2m+3)(m+2)
Substitute the factored quadratic back into the expression:
(m+1)6(m+2)(2m+3)
6(m+1)(m+2)(2m+3)
This is the RHS of P(m+1).
Thus, P(m+1) is true.
By the Principle of Mathematical Induction, P(n) is true for all n≥1.
The proof is complete.