Question
Find the sum to n terms of the series 1⋅2+2⋅3+3⋅4+…+n(n+1).
Solution — Step by Step
The k-th term is Tk=k(k+1)=k2+k.
Sn=∑k=1n(k2+k)=∑k=1nk2+∑k=1nk
=6n(n+1)(2n+1)+2n(n+1)
Take 6n(n+1) common:
Sn=6n(n+1)[(2n+1)+3]=6n(n+1)(2n+4)=3n(n+1)(n+2)
The sum is 3n(n+1)(n+2).
Why This Works
Many series with mixed terms can be split using linearity of summation. Once split, each piece is a standard sum that we know. The hard part is usually spotting the split and then simplifying the result into a clean factored form.
The compact answer n(n+1)(n+2)/3 has a beautiful pattern — three consecutive integers in the numerator. JEE often expects this form.
Alternative Method
Recognise that k(k+1)=31[k(k+1)(k+2)−(k−1)k(k+1)] (telescoping). Then
Sn=31[n(n+1)(n+2)−0⋅1⋅2]=3n(n+1)(n+2)
The same answer, derived elegantly.
For “sum of products of k consecutive integers”, look for telescoping. k(k+1)(k+2)…(k+r)=r+21[difference of (r+2)-products]. Memorise the first three.
Common Mistake
Adding the formulas for ∑k2 and ∑k but botching the factoring step. Students arrive at correct unsimplified expressions but write them as the answer instead of the clean form. JEE Main marks the simplified form; CBSE accepts both.