Sequence

DinS          Written on 2018/4/27

1. What’s sequence?

Sequence is a list of number with the notation an.

We can represent a sequence using two ways.

Formula: an = f(x) where . For example an = n2.

Recursive: an = an-1 + an-2.

 

Two well known types of sequence are arithmetic progression and geometric progression.

An arithmetic progression is a sequence with a common difference between the terms.

General form: an = a0 + d*n.

Example: 1, 3, 5, 7, 9, 11, 13, 15……   (where a0 = 1, d = 2)

Each term is the arithmetic mean of its neighbors. That’s the reason for its name.

A geometric progression is a sequence with a common ratio between the terms.

General form: an = a0*rn

Example: 1, 2, 4, 8, 16, 32, 64, 128……   (where a0 = 1, r = 2)

Each term is the geometric mean of its neighbors. That’s the reason for its name.

There’re many trick to deal with these sequences, which I won’t bother to discuss here. You can easily find them on the web or a textbook.

2. The limit of sequence

Sometimes we can work out the limit of a sequence. What does that mean?

First see an example.

Just basic limit calculations.

In plain language,  means that an is as close as you want to L provided n is large enough.

As a matter of fact, not all sequence have limit. This should be as clear as day.

Even if the limit exists, it’s usually hard to find it. To get ourselves prepared, we need several concepts.

Bound above : an is bounded above means there is a real number M so that for all n>=0, an<=M.

Bound below : an is bounded below means there is a real number M so that for all n>=0, an>=M.

Increasing: a sequence is increasing if whenever m>n, am > an.

Decreasing: a sequence is decreasing if whenever m>n, am < an.

Monotone: a sequence is monotone if the sequence is non-increasing or non-decreasing.

These concepts should be clear enough.

3. Monotone convergence theorem

Statement: If a sequence is bounded and monotone, then  exists.

If you try to think about it, it makes sense.

 

Let’s see an example using this theorem.

Given a sequence .

We want to prove that the limit of an exists.

First part is to show there’s a boundary. Notice that we don’t need to find the exact boundary. As long as we show that there is a boundary, it’s good enough.

Apparently an >= 0. Here we claim that an <= 2.

.

Because a1 = 1, the claim 0 <= an <= 2 holds true.

Actually we can use number larger than 2 to prove it.

Second part is to show the sequence is non-decreasing.

Proof: we want to show that an <= an+1

Now we square both sides and becomes

If we can show the above inequality holds, we’re done.

In fact we can. We’ve already proved that 0 <= an <= 2 holds true, which means that each term above is greater than 0. As a result, an is non-decreasing.

By monotone convergence theorem the limit of an exists.

What’s the limit of an? Monotone convergence theorem won’t tell us. 2 is a good guess.