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 , where n is a natural number, so it looks like
Suppose 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, :
This sequence tends to 1. The difference between 1 and is , so it eventually becomes "negligible" no matter what precision you choose.
Does every sequence have some number (which we'll call its limit) that it converges to? No. For example, the sequence
consisting 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 is the limit of the sequence if and only if for any there exists such that for any the inequality 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 with large indices (greater than some ) form an "-tail" of the sequence. For the sequence to have a limit , it should have some tail with elements "numerically indistinguishable from " no matter what precision we choose. And what does this indistinguishability between and means for precision ? It means that the difference is smaller than in absolute value. For any precision, there exists a tail indistinguishable from the limit, just so.
Some more examples
You may think that if is the limit of the sequence , every next term should be closer to than the previous one. That's not a necessary condition. Let's look at the sequence
Each odd term is smaller than both of its even neighbors (the only exception is ), but nevertheless, the sequence tends to zero. How can we prove that? Suppose we chose some "precision" . We must find such that for any
We can see it holds true if we take .
And now let's prove that the sequence
doesn't have a limit. How can we do that? Let's show first that cannot be the limit. We should find some such that for any some term in the "-tail" is far from (that is, ). But it's obvious that for all n greater than 20 and not divisible by 10, , so . Okay, but can some other number be the limit? No: we just take , and see that any tail of the sequence has terms (equal to ) that are too far away from .
The uniqueness of a limit
Can a sequence have two different limits and ? Let's prove that such a situation is impossible. Let . Then there exist such that for and there exist such that for . So, for , the triangle inequality gives us
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.