Skip to content

Series

A sequence is an ordered collection of numbers. We can, for instance, define a sequence of square numbers (si)i as si:=i2.

Using this definition, we can define the next interesting concept:

Definition: Series

A series is the sequence of partial sums of a sequence. The series (tn)n of the sequence (si)i is defined as

tn:=i=1nsi.

Natural numbers

A trivial sequence is formed by the natural numbers themselves, si=i. The series is interesting, because each term is the sum of n natural numbers:

Sn=i=1ni.

There is a clever way to compute this for arbitrary n in closed form:

Theorem: Gauss's Formula

The value of Sn is given by

Sn=n(n+1)2.

Proof

Writing out the sum, we have

Sn=1+2++(n1)+n.

As summation is commutative, we can also write this series out in reverse:

Sn=n+(n1)++2+1.

Both sums have the same number of terms and the same value. We can add both lines and match up the element:

2Sn=(n+1)+(n+1)++(n+1)+(n+1).

We have n elements which are (n+1). Hence we can simplify to

2Sn=n(n+1).

We divide by 2 to isolate Sn to get the claimed result:

Sn=n(n+1)2.