6 Convergence
Having formalized the number line, we can now get to work. If we want to rigorously understand any of the approximation efforts of the ancients, we must think about sequences.
Definition 6.1 (Sequence) A sequence is an infinite ordered list of numbers
Most often, we take the set of indices to be
Formally, we note all of this is captured using functions, though we will not need this perspective during our day-to-day usage of sequences.
Remark 6.1. Let
While sequence itself is just an infinite ordered list of numbers, to work with such an object we often require a way to compute its terms. Sometimes this is hard! For example, the sequence
Is called the prime counting function, and being able to compute its exact values efficiently would be monumental progress in number theory. In practice, sequences that we can compute with efficiently are often presented to us in one of two ways:
- Closed Formula For each
, we are given some formula of the type familiar from high school mathematics, and plugging into this formula yields the term of the sequence. Some examples are
- Recursive Definition For each
, we are not given a formula to compute directly, but rather we are given a formula to compute it from the previous value .
Here’s some example sequences that are important both to us, and the history of analysis:
Example 6.1 (Babylonians and
This because we can solve for
Thus, in modern terminology the babylonian procedure defines a recursive sequence, given any starting rectangle. If we begin with the rectangle of wdith 2 and height 1, we get
Exercise 6.1 (Babylonians and
Example 6.2 An infinite sum is a type of recursively defined sequence, built from another sequence called its terms. Assume that
Unpacking this, we see that
6.1 Convergence
The reason to define a sequence precisely is that we are interested in making rigorous the idea of infinitely many steps, the way the Babylonians may have pictured running their procedure an infinite number of times to produce a perfect square, or Archimedes who ran his side-doubling procedure infinitely many times to produce a circle.
In both cases, there was some number
Definition 6.2 (Convergent Sequence) A sequence
A sequence is divergent if its not convergent. The definition of convergence formalizes the idea the ancients sought if you keep calculating terms, you’ll get as close as you like to the number you seek
That is, the definition sets up a challenge between you (the computer of the sequence) and the error tolerance. Once you set a certain amount of acceptable error
Exercise 6.2 (Understanding Convergence) Consider the sequence
- What value
do you think this sequence converges to? - If
, what value of ensures that is always within of for, ? - If
, what value of ensures that is always within of for, ?
Exercise 6.3 (Convergence and
- For which value of
are we guaranteed that calculates the first two decimal places correctly, when ? - For which value of
are we guaranteed that calculates the first eight decimal places correctly, when ?
6.1.1 The Game
To prove a sequence converges, we need to work through the string of quantifiers
Here’s one incredibly useful example, that will serve as the basis of many future calculations.
Proposition 6.1 (
Proof. Let
Since
Often when working out such a computation, the scratch work is backwards of the final proof. In a proof, you need to fix an arbitrary epsilon, then
Exercise 6.4 (
Sometimes the scratch work takes a bit more thinking or algebraic manipulation. Its OK if the scratch work isn’t fully rigorous or perfectly written, as long as the eventual proof is! Here’s an example of some scratch work taking a naive approach (just “solve for
Example 6.3 (
Proof (Scratch). We want
Proof (Formal). Let
Example 6.4 (
Exercise 6.5 Give an example of the following, or explain why no such example can exist.
- A sequence with infinitely many terms equal to zero, but does not converge to zero.
- A sequence with infinitely many terms equal to zero, which converges to a nonzero number.
- A sequence of irrational numbers that converges to a rational number.
- A convergent sequence where every term is an integer.
Exercise 6.6 Prove, directly from the definition of convergence, that
6.1.2 Divergence
The definition of convergence picks out a very nice class of sequences: those that get arbitrarily close to a fixed value, as their index grows. The rest of sequences - anything that does not have this nice property, are all lumped into the category of divergent.
Definition 6.3 (Divergence) A sequence diverges if its not true that for any
Phrasing this positively: a sequence
Again, its easiest to illustrate with an example:
Example 6.5 (
Proof. Note that for all
Thus we’ve proven
Definition 6.4 (Diverging to
Exercise 6.7 (
Exercise 6.8
- Give an example of two divergent sequences
where is convergent. - Give an example of two divergent sequences
where is convergent.
6.2 Uniqueness
Theorem 6.1 (Limits are unique) Let
Here’s a sketch of the idea, which uses several big ideas that can be recycled in similar arguments:
- We prove uniqueness by showing that if
and were both limits, then . - We prove
by showing that for every the difference . - We prove
by an argument:- We add zero in a clever way:
- We use the triangle inequality
- We use the fact that
and to make each of and less than .
- We add zero in a clever way:
Proof. Assume that a sequence
Thus for any positive
There’s one more uniqueness-type theorem about limits that’s useful to get a handle on. We just saw that the limit is uniquely determined by the sequence, but we can say something slightly stronger. Its uniquely determined by the end of the sequence: if you throw away the first finitely many terms, it won’t change the limit.
Definition 6.5 A shifted sequence the result of shifting the indices by a constant
Proposition 6.2 Shifting a convergent sequence does not change its limit.
Proof (Scratch Work). Assume that
Let
Thus, for all
This can be generalized, to show that any two sequences which are eventually the same have the same limit. Since the first finite part of any sequence is irrelevant to its limiting behavior, its nice to have a word for “the rest of the sequence, after throwing away an unspecified amount at the beginning”. This is called the tail.
Definition 6.6 (Tail of a Sequence) The tail of a sequence is what remains after chopping off an arbitrary (finite) number of terms from the beginning of the sequence. Two sequences have the same tail if they agree after some point: more precisely,
Example 6.6 (Tail of a Sequence) The following two sequences have the same tail:
We can see this because
Exercise 6.9 (Convergence only depends on the tail) If two sequences have the same tail, then they either both converge or both diverge, and if they converge, they have the same limit.
6.3 Important Sequences
We will soon develop several theorems that let us calculate many limits without tediously chasing down an
The first and most important is familiar from above:
Example 6.7 As
The next is useful in developing the theory of power series, and other things. We’ll prove it using Bernoulli’s inequality:
Example 6.8 Let
Proof (Proof). First note that if
Let
This proof is OK as written because it produces a value of
Exercise 6.10 If
This next is an essential building block of the theory of exponential functions: we again make use of Bernoulli’s inequality in the proof below, but suggest an alternative (second) proof as an exercise
Example 6.9 Let
Proof. We proceed in two cases, starting first with
Thus, for all
Now we turn to the second case, which is
We can simplify the fraction inside the aboslute value and then multiply the entire inequality through by
But since
Exercise 6.11 In this problem you give an altenative proof that
- First consider only the case that
. Show that the geometric sum can be rewritten , and use this to prove that . Hint: apply it to and do some estimating. - Use this to show that
for all , and then prove (either directly, or using the squeeze theorem) that this implies . - Now consider the case
and show the same. Hint: if then , and perhaps you can do a similar trick to the textbook?
As a (challenging!) exercise, one might consider what happens if instead of taking the
Exercise 6.12 The sequence
6.4 Topology
With an eye to topology, everything about sequences and convergence can be rephrased in terms of open sets, instead of with talk about
Definition 6.7 (Neighborhoods) A neighborhood of a point
Definition 6.8 (Convergence and
That this is equivalent to Definition 6.2, because the definition of epsilon neighborhood exactly captures the interval discussed in the original definition of convergence.
Exercise 6.13 (Convergence and
The definition of an epsilon neighborhood makes sense only somewhere like the real line, where we can talk about intervals. So, the general topological definition must dispense with this notion and talk just about open sets:
Definition 6.9 A sequence
Exercise 6.14 (Convergence and Neighborhoods) Prove this is equivalent to convergence using
6.5 Problems
Exercise 6.15 Come up with a recursive sequence that could be used to formally understand the infinite expression below:
Exercise 6.16 Given two sequences
Exercise 6.17 Let