Sigma Notation
Sigma Notation
Here, the index k takes the values 0, 1, 2, and 3. We’ll plug those
1
each into k+1 and add them together.
3
X 1 1 1 1 1
= + + +
k=0
k+1 0+1 1+1 2+1 3+1
This one is a little more complicated. We’ll worry about the signs
later, first we’ll deal with the numbers themselves. Do you notice a
pattern in the terms? Sure, we get to the next term by dividing by 2.
That is:
0
1 1
1= 0 =
2 2
1
1 1 1
= 1 =
2 2 2
2
1 1 1
= 2 =
4 2 2
...
7
1 1 1
= 7 =
128 2 2
If we call our index variable k, then k should go from 0 to 7, and the
k
numbers themselves are just 12 . Now we need to deal with the signs.
We say above that (−1)k will alternate between +1 and −1. That
is, if we multiply our terms from above by (−1)k , they will alternate
between + and −. We are starting with k = 0, so (−1)0 = +1 will give
us the alternation starting at the sign we want.
7 k X 7 k
X
k 1 −1
(−1) =
k=0
2 k=0
2
First, we’ll use the properties above to split this into two sums, then
factor the 2 out of the first sum.
10
X X10 10
X
2k 2 + 5 = 2k 2 +
5
k=1 k=1 k=1
10
X 10
X
2
= 2 k + 5
k=1 k=1
The two sums we have left, can be found using formulas 1 and 3 above!
10 10
X
2 10(11)(21) X
We see that k = = 385. Similarly, 5 = 10 · 5 = 50.
k=1
6 k=1
10
X
2k 2 + 5 = 2 · 385 + 50 = 820.
Putting all that together,
k=1
200
X
2k 3 − 6k 2 + 3 .
Example 10. Find the value of the sum
k=1
Let’s use the same approach as in the previous example. First, we’ll
use the properties to split this into individual sums, then factor out
the coefficients. After that, we’ll use the formulas above to evaluate it.
200
X 200
X 200
X 200
X
2k 3 − 6k 2 + 3 2k 3 − 6k 2 +
= 3
k=1 k=1 k=1 k=1
200
X 200
X 200
X
3 2
= 2 k −6 k + 3
k=1 k=1 k=1
2
200(201) 200(201)(401)
= 2 −6 + 200 · 3
2 6
= 2 · 404010000 − 6 · 2686700 + 200 · 3
= 791900400
The numbers in this example were horribly ugly, but we were able to
evaluate the sum without having to actually calculate all 200 terms,
then add them all up. In 5 small lines, we were able to add 200 numbers.