How do you find the sum of the series k(k+2) from k=1 to 4?

2 Answers
Jul 20, 2016

50

In general: 2n3+9n2+7n6

Explanation:

The quickest way to find the answer to this question is to add it up manually:

4k=1k(k+2)=(13)+(24)+(35)+(46)

=3+8+15+24=50

More interestingly, what would be the sum of n terms for any positive integer n?

Write out the sequence of sums for n=1 to 4:

3,11,26,50

Write out the sequence of differences between successive pairs of that sequence:

8,15,24

Write out the sequence of differences of that sequence:

7,9

Write out the sequence of differences of that sequence:

2

We can now write out a formula which matches the terms of the sequence we started with, using the first element of each of these sequences as coefficients:

sn=30!+81!(n1)+72!(n1)(n2)+23!(n1)(n2)(n3)

=3+8n8+72n2212n+7+13n32n2+113n2

=2n3+9n2+7n6

Note that we know that a cubic formula is sufficient to express the sum of any number of terms since the general formula for an individual term of the sequence that we are summing is quadratic.

For example:

s4=243+942+746=128+144+286=3006=50

s10=2000+900+706=29706=495

Jul 24, 2016

We can also do this using a couple summation formulas:

  • nk=1cxk=cnk=1xk , where c is constant [1]
  • nk=1(xk±yk)=nk=1xk±nk=1yk [2]
  • nk=1k=n(n+1)2 [3]
  • nk=1k2=n(n+1)(2n+1)6 [4]

So, we see that:

4k=1k(k+2)=4k=1(k2+2k)

Split this using [2]:

4k=1(k2+2k)=4k=1k2+4k=12k

Rewrite the second term using [1]:

4k=1k2+4k=12k=4k=1k2+24k=1k

Now use [3] and [4] noting that n=4:

4k=1k2+24k=1k=4(4+1)(24+1)6+2(4(4+1)2)

=4596+2452

=30+20

=50