You are about to erase your work on this activity. Are you sure you want to do this?
Updated Version Available
There is an updated version of this activity. If you update to the most recent version of this activity, then your current progress on this activity will be erased. Regardless, your record of completion will remain. How would you like to proceed?
Mathematical Expression Editor
We introduce sigma notation.
1 The notation itself
Sigma notation is a way of writing a sum of many terms, in a concise
form. A sum in sigma notation looks something like this:
\[ \sum _{k=1}^{5} 3k \]
The \(\Sigma \) (sigma) indicates that a sum is being taken. The variable \(k\) is called
the index of the sum. The numbers at the top and bottom of the \(\Sigma \) are
called the upper and lower limits of the summation. In this case, the
upper limit is \(5\), and the lower limit is \(1\). The notation means that we will
take every integer value of \(k\) between \(1\) and \(5\) (so \(1\), \(2\), \(3\), \(4\), and \(5\)) and plug them
each into the summand formula (here that formula is \(3k\)). Then those are
all added together.
The index variable here is
written as \(i\) instead of \(k\). That’s ok. The most common variables to use for
indexes include \(i\), \(j\), \(k\), \(m\), and \(n\). \begin{align*} \sum _{i=1}^8 (-1)^i = (-1)^{\answer [given]{1}} &+ (-1)^{\answer [given]{2}} + (-1)^{\answer [given]{3}} + (-1)^{\answer [given]{4}} \\ &+ (-1)^{\answer [given]{5} }+ (-1)^{\answer [given]{6}} + (-1)^{\answer [given]{7}} + (-1)^{\answer [given]{8}} \end{align*}
This is equal to: \begin{align*} &= -1 + 1 + -1 + 1 + -1 + 1 + -1 + 1\\ &= \answer [given]{0} \end{align*}
Try one on your own.
Write out what is meant by the following (no
need to simplify):
That means that we are adding together \(\answer [given]{2}\) times every number
between \(1\) and \(12\). If we use \(k\) as our index, the sigma notation could be
\[ \sum _{k=1}^{12} \answer [given]{2k} \]
There is no need to use \(k\) as our index variable. We could have just as
easily used \(m\) or \(j\) instead.
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 from one term to the next term by dividing by 2. That is:
\begin{align*} 1 &= \frac {1}{2^0} = \left (\frac {1}{2}\right )^0\\ \frac {1}{2} &= \frac {1}{2^1} = \left (\frac {1}{2}\right )^{1}\\ \frac {1}{4} &= \frac {1}{2^2} = \left (\frac {1}{2}\right )^{2}\\ &\vdots \\ \frac {1}{128} &= \frac {1}{2^7} = \left (\frac {1}{2}\right )^{7} \end{align*}
If we call our index variable \(k\), then \(k\) should go from \(0\) to \(\answer [given]{7}\), and the numbers
themselves are just \(\left (\frac {1}{2}\right )^{\answer [given]{k}}\). Now we need to deal with the signs. We say above
that \((-1)^k\) will alternate between \(+1\) and \(-1\). That means, if we multiply the terms
we just found 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.
We want to use sigma notation to simplify our calculations. To do that,
we will need to know some basic sums. First, let’s talk about the sum
of a constant. (Notice here, that our upper limit of summation
is \(n\). \(n\) is not the index variable, here, but the highest value that
the index variable will take.)
This is a sum of \(n\) terms, each of
them having a value \(C\). That is, we are adding \(n\) copies of \(C\). This
sum is just \(nC\). The other basic sums that we need are much more
complicated to derive. Rather than explaining where they come
from, we’ll just give you a list of the final formulas, that you can
use.
\(\sum _{k=1}^n C = nC\).
\(\sum _{k=1}^n k = \frac {n(n+1)}{2}\).
\(\sum _{k=1}^n k^2 = \frac {n(n+1)(2n+1)}{6}\).
Now that we have this list, let’s use them to compute.
Find the value of
the sum \(\sum _{k=1}^{5} 9\).
This is just the sum of a constant, with \(C=\answer [given]{9}\) and \(n=\answer [given]{5}\). The value is \(nC=\answer [given]{45}\).
Find the value of the sum \(\sum _{k=1}^{100} k\).
This is the sum \(1+2+3+ \ldots + 100\). According to Formula 2
above (with \(n=\answer [given]{100}\)), this is \(\frac {\answer [given]{100}(\answer [given]{101})}{2} = \answer [given]{5050}\).
Because sigma notation is just a new way of writing addition, the usual
properties of addition still apply, but a couple of the important ones look
a little different.
\[ \sum _{k=1}^{n} c \cdot a_k = c \sum _{k=1}^n a_k \]
Find the value of the sum:
\[ \sum _{k=1}^{10} \left (2k^2+5\right ) \]
First, we’ll use the properties above to
split this into two sums, then factor the \(2\) out of the first sum.
\begin{align*} \sum _{k=1}^{10} \left (2k^2+5\right ) &= \sum _{k=1}^{10} 2k^2 + \sum _{k=1}^{10} 5\\ &= 2 \sum _{k=1}^{10} \answer [given]{k^2} + \sum _{k=1}^{10} 5 \end{align*}
The two sums we have left, can be found using formulas 1 and
3 above! We see that:
Putting all that together, \(\sum _{k=1}^{10}\left (2k^2+5\right ) = 2 \cdot 385 + 50 = \answer [given]{820}\).
Find the value of the sum:
\[ \sum _{k=1}^{200} \left (-6k^2+3\right ) \]
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. \begin{align*} \sum _{k=1}^{200} \left (-6k^2+3\right ) &= \sum _{k=1}^{200} -6k^2 + \sum _{k=1}^{200}3\\ &= - 6 \sum _{k=1}^{200} \answer [given]{k^2} + \sum _{k=1}^{200}\answer [given]{3}\\ &= - 6 \left ( \frac {200(201)(401)}{6}\right ) + 200 \cdot 3\\ &= \answer [given]{-16119600} \end{align*}
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 \(4\) small lines, we were able to add \(200\) numbers.
Try one on your own.
Find the value of the sum \(\sum _{k=1}^{50} \left ( 4k^2-18k + 2(-1)^k \right )\)