Sequences and Series: Numerical Problems Set (3)

hard 2 min read

Question

Find the sum to nn terms of the series 12+23+34++n(n+1)1 \cdot 2 + 2 \cdot 3 + 3 \cdot 4 + \ldots + n(n+1).

Solution — Step by Step

The kk-th term is Tk=k(k+1)=k2+kT_k = k(k+1) = k^2 + k.

Sn=k=1n(k2+k)=k=1nk2+k=1nkS_n = \sum_{k=1}^{n} (k^2 + k) = \sum_{k=1}^{n} k^2 + \sum_{k=1}^{n} k

=n(n+1)(2n+1)6+n(n+1)2= \frac{n(n+1)(2n+1)}{6} + \frac{n(n+1)}{2}

Take n(n+1)6\dfrac{n(n+1)}{6} common:

Sn=n(n+1)6[(2n+1)+3]=n(n+1)(2n+4)6=n(n+1)(n+2)3S_n = \frac{n(n+1)}{6}\left[(2n+1) + 3\right] = \frac{n(n+1)(2n+4)}{6} = \frac{n(n+1)(n+2)}{3}

The sum is n(n+1)(n+2)3\dfrac{n(n+1)(n+2)}{3}.

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)/3n(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)=13[k(k+1)(k+2)(k1)k(k+1)]k(k+1) = \tfrac{1}{3}[k(k+1)(k+2) - (k-1)k(k+1)] (telescoping). Then

Sn=13[n(n+1)(n+2)012]=n(n+1)(n+2)3S_n = \tfrac{1}{3}[n(n+1)(n+2) - 0\cdot 1\cdot 2] = \frac{n(n+1)(n+2)}{3}

The same answer, derived elegantly.

For “sum of products of kk consecutive integers”, look for telescoping. k(k+1)(k+2)(k+r)=1r+2[difference of (r+2)-products]k(k+1)(k+2)\ldots(k+r) = \tfrac{1}{r+2}[\text{difference of }(r+2)\text{-products}]. Memorise the first three.

Common Mistake

Adding the formulas for k2\sum k^2 and k\sum 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.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next