Question
Find the sum to n terms of the series:
1⋅2+2⋅3+3⋅4+⋯+n(n+1)
(JEE Main 2021, similar pattern)
Solution — Step by Step
The kth term is Tk=k(k+1)=k2+k.
So Sn=∑k=1nk(k+1)=∑k=1n(k2+k).
Sn=k=1∑nk2+k=1∑nk
We know:
- ∑k=1nk=2n(n+1)
- ∑k=1nk2=6n(n+1)(2n+1)
Sn=6n(n+1)(2n+1)+2n(n+1)
Factor out 6n(n+1):
Sn=6n(n+1)[(2n+1)+3]=6n(n+1)(2n+4)
=6n(n+1)⋅2(n+2)=3n(n+1)(n+2)
Why This Works
The key insight is that products like k(k+1) can be expanded into powers of k, and we have standard formulas for ∑k and ∑k2. This “expand and use standard sums” approach works for any series whose general term is a polynomial in k.
The final answer 3n(n+1)(n+2) has a beautiful combinatorial interpretation: it equals 2(3n+2), which counts something in combinatorics. This pattern — products of consecutive integers summing to binomial coefficients — appears frequently in JEE.
Alternative Method — Telescoping via Method of Differences
Write k(k+1)=31[k(k+1)(k+2)−(k−1)k(k+1)].
This is a telescoping form. Summing from k=1 to n:
Sn=31[n(n+1)(n+2)−0]=3n(n+1)(n+2)
Most intermediate terms cancel, leaving only the last term. This is the true “method of differences” approach.
The telescoping trick works because k(k+1) is a product of 2 consecutive integers. The general rule: a product of r consecutive integers can be telescoped using products of r+1 consecutive integers. So for k(k+1)(k+2), you’d use products of 4 consecutive integers.
Common Mistake
Students often mess up the factoring in the last step. After getting 6n(n+1)(2n+1)+2n(n+1), they try to add the fractions without taking LCM properly. The cleanest approach: factor out 6n(n+1) first, then simplify what’s inside the brackets. Rushing the algebra here leads to answers like 6n(n+1)(2n+3) — which is wrong but looks plausible enough to select in an MCQ.