8 minutes read

We often encounter sequences in our day-to-day life without even noticing them. For example, if you wish to give your money to the bank for a return on interest, a monthly or yearly balance can be represented by a sequence. To study their long-term behavior, the concept of limit, which is the value that the sequence approaches as the number of terms goes to infinity is very useful. Let's get acquainted with this concept.

Intuitive introduction to limits

Recall that a sequence is an infinite list of terms. Usually, we talk about sequences of numbers (although that's not the only possible case). Let's look at several examples of number sequences.

Our first sequence is defined by the formula an=12na_n = \frac{1}{2^{n}}, where n is a natural number, so it looks like

12,14,18,116,\frac{1}{2}, \frac{1}{4}, \frac{1}{8}, \frac{1}{16}, \ldotsSuppose you want to compute the first 50 terms of this sequence. If you do this in your favorite programming language, setting precision to five decimal places, then, after the 17th term, you'll see only zeros. But you know your arithmetic, so you won't believe in obtaining 0 dividing non-zero numbers. The subsequent terms are just very small, so the precision isn't enough to distinguish them from zero. You increase the precision to six decimal places. Now only the terms up to 20th are large enough to be displayed as non-zero. With the precision of seven decimal places, zeros begin after the 24th term.

We say that this sequence tends to zero. No matter what precision you choose, starting at some position all the terms become numerically indistinguishable from zero.

Let's look at another sequence, bn=n1nb_n = \frac{n - 1}{n}:

0,12,23,34,45,0, \frac{1}{2}, \frac{2}{3}, \frac{3}{4}, \frac{4}{5}, \ldotsThis sequence tends to 1. The difference between 1 and bnb_{n} is 1n\frac{1}{n}, so it eventually becomes "negligible" no matter what precision you choose.

A sequence tending to 1

Does every sequence have some number (which we'll call its limit) that it converges to? No. For example, the sequence

cn=(1)nc_n = (-1)^nconsisting of alternating 1 and -1, has no limit. There is no single number such that all elements (starting at some position) of the sequence will eventually approach. Sequences having a limit are called convergent, while all others are called divergent.

The definition of a limit

Let's now define the limit in a formal way.

Definition: a number AA is the limit of the sequence (an)(a_{n}) if and only if for any ε>0\varepsilon > 0 there exists NN such that for any n>Nn > N the inequality anA<ε|a_{n} -A| < \varepsilon holds.

This definition, with all its notation, looks a bit intimidating, but let's see how it reflects the intuition we developed in the previous section. The elements ana_{n} with large indices (greater than some NN) form an "NN-tail" of the sequence. For the sequence to have a limit AA, it should have some tail with elements "numerically indistinguishable from AA" no matter what precision we choose. And what does this indistinguishability between ana_{n} and AA means for precision ε\varepsilon? It means that the difference anAa_{n} -A is smaller than ε\varepsilon in absolute value. For any precision, there exists a tail indistinguishable from the limit, just so.

Some more examples

You may think that if AA is the limit of the sequence (an)(a_{n}), every next term should be closer to AA than the previous one. That's not a necessary condition. Let's look at the sequence

an={1n if n is even12n if n is odda_n = \begin{cases} \frac{1}{n} \text { if } n \text { is even}\\ \frac{1}{2n} \text { if } n \text { is odd} \end{cases}

Sequence

Each odd term is smaller than both of its even neighbors (the only exception is a1=12=a2a_{1} =\frac{1}{2} = a_{2}), but nevertheless, the sequence tends to zero. How can we prove that? Suppose we chose some "precision" ε>0\varepsilon > 0. We must find NN such that for any n>Nn > N

{1n<ε if n is even12n<ε if n is odd\begin{cases} \frac{1}{n} < \varepsilon \text { if } n \text { is even}\\ \frac{1}{2n} < \varepsilon \text { if } n \text { is odd} \end{cases}We can see it holds true if we take N=1εN = \frac{1}{\varepsilon}.

And now let's prove that the sequence

bn={110 if n is divisible by 101n otherwiseb_n = \begin{cases} \frac{1}{10} \text { if } n \text { is divisible by } 10\\ \frac{1}{n} \text { otherwise} \end{cases}doesn't have a limit. How can we do that? Let's show first that 110\frac{1}{10} cannot be the limit. We should find some ε>0\varepsilon > 0 such that for any NN some term bnb_{n} in the "NN-tail" is far from 110\frac{1}{10} (that is, bn110>ε|b_{n} -\frac{1}{10}| > \varepsilon). But it's obvious that for all n greater than 20 and not divisible by 10, bn<120b_n < \frac{1}{20}, so bn110>120|b_{n} -\frac{1}{10}| > \frac{1}{20}. Okay, but can some other number B110B \neq \frac{1}{10} be the limit? No: we just take ε<110B\varepsilon < |\frac{1}{10} - B|, and see that any tail of the sequence has terms (equal to 110\frac{1}{10}) that are too far away from BB.

Sequence (2)

The uniqueness of a limit

Can a sequence (an)(a_{n}) have two different limits AA and AA'? Let's prove that such a situation is impossible. Let ε=AA/2\varepsilon = |A - A'|/2. Then there exist N1N_{1} such that for n>N1n > N_{1} anA<ε|a_{n} - A| < \varepsilon and there exist N2N_{2} such that for n>N2n > N_{2} anA<ε|a_{n} - A'| < \varepsilon. So, for n>max(N1,N2)n > \max(N_{1}, N_{2}), the triangle inequality gives us

AA<anA+anA<2ε=AA|A - A'| < |a_{n} - A| + |a_{n} - A'| < 2 \varepsilon = |A - A'|We obtained a contradiction, so, our assumption about two different limits was incorrect. So any sequence either has only one limit or no limit at all.

Conclusion

In this topic, we have discussed the notion of sequences as well as the formal definition of the limit of a sequence. Also, we went over a few examples to familiarize ourselves with the topic further. We have learned that sequences can only have either one limit or none at all.

39 learners liked this piece of theory. 19 didn't like it. What about you?
Report a typo