Sigma Notation for Series

A series is the sum of a sequence of numbers ana_n. For example

1+4+9++n2 1 + 4 + 9 + \cdots + n^2

is the series of numbers ak=k2a_k = k^2 for values of kk betweem 11 and nn. Often, we are able to find an analytical expression for a series, which avoids the need to compute this large sum. For example, we can show that

1+4+9++n2=n(n+1)(2n+1)61 + 4 + 9 + \cdots + n^2 = \frac{n(n+1)(2n+1)}6

We often use induction to demonstrate the proof of an analytical expression for a series. However, these results can become tedious to write if we have to keep track of all of the terms in these equations. Sigma notation is a much more compact way that we can write series, and keep track of the exact terms inside it. For example, we could represent the series 1+4+9++n21 + 4 + 9 + \cdots + n^2 is sigma notation as

i=1ni2\sum_{i=1}^{n}{i^2}

The symbol \sum is the capitalised greek letter sigma, which makes the same sound as the letter 's' and so is used to represent a sum. The sigma notation contains two parts:

  1. An index, represented by the i=1i = 1 and nn below and above the \sum. This tells us to start with the value 11, and keep incrementing it until we reach nn, which is the last term in our series.
  2. An inner expression, which tells us what to do with the value ii in each term to get the value in the series.

The way to read the series i=1ni2\sum_{i=1}^{n}{i^2} in sigma notation is:

For each value of ii, starting with i=1i = 1 and ending with i=ni = n, square each value and take their sum.

If we follow this procedure, we would get the following

iii2i^2
1111
2244
3399
\cdots\cdots
nnn2n^2

And so our series would be 1+4+9++n21 + 4 + 9 + \cdots + n^2.

If necessary, we can also use brackets to apply summation to more complex inner expression, for example

i=1n(i22i+1)\sum_{i=1}^{n}{(i^2 -2i + 1)}

In this case, we would evaluate i22i+1i^2 - 2i + 1 for each value of ii, rather than just i2i^2

iii22i+1i^2 -2i + 1
1100
2211
3344
\cdots\cdots
nnn22n+1n^2 - 2n + 1

...

Log in or sign up to see more