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: #(2n^3+9n^2+7n)/6#

Explanation:

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

#sum_(k=1)^4 k(k+2) = (1*3)+(2*4)+(3*5)+(4*6)#

#= 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#:

#color(blue)(3), 11, 26, 50#

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

#color(blue)(8), 15, 24#

Write out the sequence of differences of that sequence:

#color(blue)(7), 9#

Write out the sequence of differences of that sequence:

#color(blue)(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:

#s_n = color(blue)(3)/(0!) + color(blue)(8)/(1!)(n-1) + color(blue)(7)/(2!)(n-1)(n-2) + color(blue)(2)/(3!)(n-1)(n-2)(n-3)#

#=3+8n-8+7/2n^2-21/2n+7+1/3n^3-2n^2+11/3n-2#

#=(2n^3+9n^2+7n)/6#

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:

#s_4 = (2*4^3+9*4^2+7*4)/6 = (128+144+28)/6 = 300/6 = 50#

#s_10 = (2000+900+70)/6 = 2970/6 = 495#

Jul 24, 2016

We can also do this using a couple summation formulas:

  • #sum_(k=1)^ncx_k=csum_(k=1)^nx_k" "" "#, where #c# is constant #" "" "#[1]
  • #sum_(k=1)^n(x_k+-y_k)=sum_(k=1)^nx_k+-sum_(k=1)^ny_k" "" "# [2]
  • #sum_(k=1)^nk=(n(n+1))/2" "" "# [3]
  • #sum_(k=1)^nk^2=(n(n+1)(2n+1))/6" "" "# [4]

So, we see that:

#sum_(k=1)^4k(k+2)=sum_(k=1)^4(k^2+2k)#

Split this using [2]:

#sum_(k=1)^4(k^2+2k)=sum_(k=1)^4k^2+sum_(k=1)^4 2k#

Rewrite the second term using [1]:

#sum_(k=1)^4k^2+sum_(k=1)^4 2k=sum_(k=1)^4k^2+2sum_(k=1)^4k#

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

#sum_(k=1)^4k^2+2sum_(k=1)^4k=(4(4+1)(2*4+1))/6+2((4(4+1))/2)#

#=(4*5*9)/6+(2*4*5)/2#

#=30+20#

#=50#