Special sums of natural numbers
Three standard sums appear so often that you should know them by heart:
∑k=1nk=2n(n+1),∑k=1nk2=6n(n+1)(2n+1),∑k=1nk3=(2n(n+1))2.
Combined with the linearity of Σ, they let you sum any series whose general term is a polynomial in k.
Derivations
Sum of first n natural numbers. Use the AP formula with a=1,d=1,n terms:
∑k=1nk=2n(1+n)=2n(n+1).
Pictorially: pair 1 with n, 2 with n−1, … , each pair sums to n+1, and there are n/2 pairs.
Sum of squares. A standard derivation uses the identity (k+1)3−k3=3k2+3k+1. Telescope:
(n+1)3−1=∑k=1n[(k+1)3−k3]=3∑k2+3∑k+n.
Solve for ∑k2:
3∑k2=(n+1)3−1−3⋅2n(n+1)−n,
∑k=1nk2=6n(n+1)(2n+1).
Sum of cubes. Similarly, expand (k+1)4−k4=4k3+6k2+4k+1 and telescope:
∑k=1nk3=(2n(n+1))2=(∑k=1nk)2.
The remarkable fact: the sum of the first n cubes equals the square of the sum of the first n integers.
To sum any polynomial series ∑k=1np(k) where p has degree ≤3, write p(k) as a linear combination of 1,k,k2,k3 and apply linearity. For higher polynomial degrees, extend with ∑k4=30n(n+1)(2n+1)(3n2+3n−1) (a Class XI bonus, rarely required).
Worked examples
Example 1. Compute ∑k=120k.
220⋅21=210.
Example 2. Compute ∑k=115k2.
615⋅16⋅31=67440=1240.
Example 3. Find ∑k=1n(k+2)2.
Expand: ∑(k2+4k+4)=∑k2+4∑k+4n=6n(n+1)(2n+1)+2n(n+1)+4n.
For n=5: 55+30⋅2+20=55+60+20=135. (Check: 32+42+52+62+72=9+16+25+36+49=135. ✓)
Example 4. Find ∑k=1nk(k+1)(k+2).
k(k+1)(k+2)=k3+3k2+2k. So
∑=∑k3+3∑k2+2∑k=(2n(n+1))2+3⋅6n(n+1)(2n+1)+2⋅2n(n+1).
This simplifies to 4n(n+1)(n+2)(n+3).
Example 5. Find the sum 1⋅2+2⋅3+3⋅4+⋯+n(n+1).
Tk=k(k+1)=k2+k. Sum =∑k2+∑k=6n(n+1)(2n+1)+2n(n+1)=3n(n+1)(n+2).
Try it yourself
- Compute 1+2+3+⋯+100.
- Compute 12+22+32+⋯+502.
- Compute 13+23+33+⋯+203.
- Show that ∑k=1n(2k−1)=n2. (Sum of first n odd numbers.)
- Find ∑k=1n(2k−1)2.
- Find ∑k=1nk(2k−1).
- Find ∑k=1n(k+1)(k+2).
- Find ∑k=1nk(k+2).
- Compute ∑k=115(k2+k).
- Find ∑k=1n(n−k+1)k.
- Show 13+23+⋯+n3=(1+2+⋯+n)2.
- Find ∑k=1nk(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 is a beautiful identity , useful for cross-checks.
- Insight. A polynomial in k summed to n produces a polynomial in n of degree one higher , this is the basic shape of every result.