Let P(n) be the statement ∑r=1nr(r+1)=31n(n+1)(n+2).
Step 1: Base Case
We need to show P(1) is true.
For n=1, LHS = ∑r=11r(r+1)=1(1+1)=2.
RHS = 31(1)(1+1)(1+2)=31(1)(2)(3)=2.
Since LHS = RHS, P(1) is true.
Step 2: Inductive Hypothesis
Assume that P(k) is true for some positive integer k.
That is, assume ∑r=1kr(r+1)=31k(k+1)(k+2).
Step 3: Inductive Step
We need to show that P(k+1) is true. That is, we need to prove that ∑r=1k+1r(r+1)=31(k+1)((k+1)+1)((k+1)+2)=31(k+1)(k+2)(k+3).
Consider the LHS for n=k+1:
∑r=1k+1r(r+1)=(∑r=1kr(r+1))+(k+1)((k+1)+1)
=(∑r=1kr(r+1))+(k+1)(k+2)
Now, using the inductive hypothesis for the sum up to k:
=31k(k+1)(k+2)+(k+1)(k+2)
Factor out the common terms (k+1)(k+2):
=(k+1)(k+2)(31k+1)
=(k+1)(k+2)(3k+3)
=31(k+1)(k+2)(k+3)
This is the required RHS for P(k+1). So, if P(k) is true, then P(k+1) is true.
Step 4: Conclusion
Since P(1) is true, and it has been shown that if P(k) is true then P(k+1) is true, by the principle of mathematical induction, the statement is true for all positive integers n.