Math Lab
Home/Class XI/Ch 8/Special sums of natural numbers

Special sums of natural numbers

Three standard sums appear so often that you should know them by heart: k=1nk=n(n+1)2,k=1nk2=n(n+1)(2n+1)6,k=1nk3=(n(n+1)2)2.\sum_{k=1}^n k = \frac{n(n+1)}{2}, \quad \sum_{k=1}^n k^2 = \frac{n(n+1)(2n+1)}{6}, \quad \sum_{k=1}^n k^3 = \left(\frac{n(n+1)}{2}\right)^2. Combined with the linearity of Σ\Sigma, they let you sum any series whose general term is a polynomial in kk.

Derivations

Sum of first nn natural numbers. Use the AP formula with a=1,d=1,na = 1, d = 1, n terms: k=1nk=n2(1+n)=n(n+1)2.\sum_{k=1}^n k = \frac{n}{2}(1 + n) = \frac{n(n+1)}{2}. Pictorially: pair 11 with nn, 22 with n1n - 1, \dots , each pair sums to n+1n + 1, and there are n/2n/2 pairs.

Sum of squares. A standard derivation uses the identity (k+1)3k3=3k2+3k+1(k + 1)^3 - k^3 = 3k^2 + 3k + 1. Telescope: (n+1)31=k=1n[(k+1)3k3]=3k2+3k+n.(n + 1)^3 - 1 = \sum_{k=1}^n [(k+1)^3 - k^3] = 3 \sum k^2 + 3 \sum k + n. Solve for k2\sum k^2: 3k2=(n+1)313n(n+1)2n,3 \sum k^2 = (n + 1)^3 - 1 - 3 \cdot \frac{n(n+1)}{2} - n, k=1nk2=n(n+1)(2n+1)6.\sum_{k=1}^n k^2 = \frac{n(n+1)(2n + 1)}{6}.

Sum of cubes. Similarly, expand (k+1)4k4=4k3+6k2+4k+1(k+1)^4 - k^4 = 4 k^3 + 6 k^2 + 4 k + 1 and telescope: k=1nk3=(n(n+1)2)2=(k=1nk)2.\sum_{k=1}^n k^3 = \left(\frac{n(n+1)}{2}\right)^2 = \left(\sum_{k=1}^n k\right)^2.

The remarkable fact: the sum of the first nn cubes equals the square of the sum of the first nn integers.

Using these formulas

To sum any polynomial series k=1np(k)\sum_{k=1}^n p(k) where pp has degree 3\le 3, write p(k)p(k) as a linear combination of 1,k,k2,k31, k, k^2, k^3 and apply linearity. For higher polynomial degrees, extend with k4=n(n+1)(2n+1)(3n2+3n1)30\sum k^4 = \dfrac{n(n+1)(2n+1)(3n^2 + 3n - 1)}{30} (a Class XI bonus, rarely required).

Worked examples

Example 1. Compute k=120k\sum_{k=1}^{20} k.

20212=210\dfrac{20 \cdot 21}{2} = 210.

Example 2. Compute k=115k2\sum_{k=1}^{15} k^2.

1516316=74406=1240\dfrac{15 \cdot 16 \cdot 31}{6} = \dfrac{7440}{6} = 1240.

Example 3. Find k=1n(k+2)2\sum_{k=1}^n (k + 2)^2.

Expand: (k2+4k+4)=k2+4k+4n=n(n+1)(2n+1)6+2n(n+1)+4n\sum (k^2 + 4k + 4) = \sum k^2 + 4 \sum k + 4n = \dfrac{n(n+1)(2n+1)}{6} + 2 n(n+1) + 4n.

For n=5n = 5: 55+302+20=55+60+20=13555 + 30 \cdot 2 + 20 = 55 + 60 + 20 = 135. (Check: 32+42+52+62+72=9+16+25+36+49=1353^2 + 4^2 + 5^2 + 6^2 + 7^2 = 9 + 16 + 25 + 36 + 49 = 135. ✓)

Example 4. Find k=1nk(k+1)(k+2)\sum_{k=1}^n k(k + 1)(k + 2).

k(k+1)(k+2)=k3+3k2+2kk(k+1)(k+2) = k^3 + 3 k^2 + 2k. So =k3+3k2+2k=(n(n+1)2)2+3n(n+1)(2n+1)6+2n(n+1)2.\sum = \sum k^3 + 3 \sum k^2 + 2 \sum k = \left(\frac{n(n+1)}{2}\right)^2 + 3 \cdot \frac{n(n+1)(2n+1)}{6} + 2 \cdot \frac{n(n+1)}{2}. This simplifies to n(n+1)(n+2)(n+3)4\dfrac{n(n+1)(n+2)(n+3)}{4}.

Example 5. Find the sum 12+23+34++n(n+1)1 \cdot 2 + 2 \cdot 3 + 3 \cdot 4 + \dots + n(n+1).

Tk=k(k+1)=k2+kT_k = k(k + 1) = k^2 + k. Sum =k2+k=n(n+1)(2n+1)6+n(n+1)2=n(n+1)(n+2)3= \sum k^2 + \sum k = \dfrac{n(n+1)(2n+1)}{6} + \dfrac{n(n+1)}{2} = \dfrac{n(n+1)(n+2)}{3}.

Try it yourself

  1. Compute 1+2+3++1001 + 2 + 3 + \dots + 100.
  2. Compute 12+22+32++5021^2 + 2^2 + 3^2 + \dots + 50^2.
  3. Compute 13+23+33++2031^3 + 2^3 + 3^3 + \dots + 20^3.
  4. Show that k=1n(2k1)=n2\sum_{k=1}^n (2k - 1) = n^2. (Sum of first nn odd numbers.)
  5. Find k=1n(2k1)2\sum_{k=1}^n (2k - 1)^2.
  6. Find k=1nk(2k1)\sum_{k=1}^n k(2k - 1).
  7. Find k=1n(k+1)(k+2)\sum_{k=1}^{n} (k + 1)(k + 2).
  8. Find k=1nk(k+2)\sum_{k=1}^n k(k + 2).
  9. Compute k=115(k2+k)\sum_{k=1}^{15} (k^2 + k).
  10. Find k=1n(nk+1)k\sum_{k=1}^n (n - k + 1) k.
  11. Show 13+23++n3=(1+2++n)21^3 + 2^3 + \dots + n^3 = (1 + 2 + \dots + n)^2.
  12. Find k=1nk(nk)\sum_{k=1}^n k(n - k).

Pitfalls / Tricks

  • Memorise the three sums; they are unavoidable.
  • Always expand the general term first, then split into known sums.
  • k3=(k)2\sum k^3 = (\sum k)^2 is a beautiful identity , useful for cross-checks.
  • Insight. A polynomial in kk summed to nn produces a polynomial in nn of degree one higher , this is the basic shape of every result.

Practice quiz

Quick check on this topic.

Quiz
Quick check : Special sums
6 questions · pick the best answer
Q1

Q2

Q3

Q4

Q5

Q6