Skip to Content

Series

Series are a key concept in calculus that also finds many practical applications in physics, engineering, computer science and many other fields.

Before we define a series we will define a partial sum of a sequence. The \(n\)th partial sum of a sequence is the sum of the first \(n\) terms of the sequence. So if we have the sequence \(a_1, a_2, a_3, \ldots\) then the \(n\)th partial sum is:

\[\begin{align*} S_1 &= a_1 \\ S_2 &= a_1 + a_2 \\ \ldots \\ s_n = a_1 + a_2 + a_3 + \ldots + a_n = \sum_{i=1}^{n} a_i \]

If a sequence has \(n\) terms then there are \(n\) partial sums. Now we can define a series. A series is the sum of the terms of a sequence. So if we have the sequence \(a_1, a_2, a_3, \ldots a_n\) then the series of the sequence is:

\[S = a_1 + a_2 + a_3 + \ldots + a_n = \sum_{i=1}^{n} a_i \]

This means that if the sequence is finite then the series is finite. If the sequence is infinite then the series is infinite. So the infinite series is the sum of an infinite number of terms. We can write this as:

\[S = a_1 + a_2 + a_3 + a_4 + \ldots = \sum_{n=1}^{\infty} a_n \]

Arithmetic Series

A well known example of a series is the arithmetic series. However, most people only know a special case of the arithmetic series, the gaussian sum. [To find out more about the gaussian sum and the proof of the formula, you can see it as the introductory example of proof by induction.

\[\sum_{k=1}^{n} k = 1 + 2 + 3 + \ldots + n = \frac{n(n+1)}{2} \]

The arithmetic series is a more general form of the gaussian sum. First we start with the definition of the arithmetic sequence or arithmetic progression. The sequence is defined by the first term \(a_1\), the common difference \(d\) and the number of terms \(n\). This makes it a finite sequence. Infinite arithmetic sequences are a bit more complex. All the terms in the sequence are then obtained by adding the common difference to the previous term.

\[a_1, a_1 + d, a_1 + 2d, a_1 + 3d, \ldots \text{ or simply } a_n = a_1 + (n-1)d \]

So for example the sequence of all odd number or all even numbers are arithmetic sequences.

\[1, 3, 5, 7, 9, \ldots \text{ or } 2, 4, 6, 8, 10, \ldots \text{ with } d=2 \]

We have seen that a series is the sum of the terms of a sequence. So the arithmetic series is the sum of the terms of an arithmetic sequence. By observing the values and also if we look at the proof of the gaussian sum, we can see that we can actually come up with a formula for the arithmetic series as well. If we denote the sum of the first \(n\) terms of an arithmetic sequence as \(S_n\), then we can write:

\[\begin{align*} S_n &= a_1 + (a_1 + d) + (a_1 + 2d) + \ldots + (a_1 + (n-1)d) \\ &= \frac{n}{2} \left(2a_1 + (n-1)d\right) \\ &= \frac{n}{2} \left(a_1 + a_n\right) \\ &= \frac{n}{2} \left(\text{first term} + \text{last term}\right) \end{align*} \]
Visual derivation of the formula for the arithmetic series
Visual derivation of the formula for the arithmetic series

For the gaussian sum we have \(a_1=1\), \(d=1\) and \(a_n=n\). So we get:

\[S_n = \frac{n}{2} \left(1 + n\right) = \frac{n(n+1)}{2} = \sum_{k=1}^{n} k \]

Other Types of Series

Last updated on