Find the formula for the nth partial sum of
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
In a loose sense, summation is related to integration, and using this intuition we can expect the nth partial sum formula for this sum to be in the form of a third degree polynomial. A third degree polynomial is uniquely defined by four points. So we construct a polynomial p ( x ) = a x 3 + b x 2 + c x + d and we compute various partial sums. Doing this gives us p ( 0 ) = 1 , p ( 1 ) = 2 , p ( 2 ) = 5 , p ( 3 ) = 1 2 . We can then construct the following system of linear equations
0 a + 0 b + 0 c + d = a + b + c + d = 8 a + 4 b + 2 c + d = 2 7 a + 9 b + 3 c + d = 1 2 5 1 2
Which can easily be solved by putting it into a matrix and computing the RREF of that matrix, or with whatever method one uses.
⎣ ⎢ ⎢ ⎡ 0 1 8 2 7 0 1 4 9 0 1 2 3 1 1 1 1 1 2 5 1 2 ⎦ ⎥ ⎥ ⎤ → ⎣ ⎢ ⎢ ⎡ 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 3 1 0 3 2 1 ⎦ ⎥ ⎥ ⎤
Which of course gives us a = 3 1 , b = 0 , c = 3 2 , d = 1 . Therefore the unique polynomial that passes through the four summation points is p ( x ) = 3 1 x 3 + 3 2 x + 1 , then restricting the argument to positive integers gives us the partial sum formula:
p ( n ) = 3 1 n 3 + 3 2 n + 1 = 3 1 ( n + 1 ) ( n 2 − n + 3 ) Alternatively if one recognizes the three sums making up k 2 − k + 1 then this problem is easier. k = 0 ∑ n k 2 k = 0 ∑ n k k = 0 ∑ n 1 = 6 1 n ( n + 1 ) ( 2 n + 1 ) = 2 1 n ( n + 1 ) = n + 1 Combining all of these formulas yields us the correct result: k = 0 ∑ n k 2 − k + 1 k = 0 ∑ n k 2 − k + 1 = 6 1 n ( n + 1 ) ( 2 n + 1 ) − [ 2 1 n ( n + 1 ) ] + n + 1 = 3 1 ( n + 1 ) ( n 2 − n + 3 )