Published Jun 21, 2021
[
 
]
The real purpose of creating a rigorous definition for convergence of a sequence is not to have a tool to verify computational statements such as \(\lim 2n/(n+2) = 2\). The point of having such a logically tight description of convergence is so that we can confidently prove statements about convergent sequences in general. We are ultimately trying to resolve arguments about what is and is not true regarding the behavior of limits with respect to the mathematical manipulations we intended to inflict on them.
Definition 2.3.1 A sequence \((x_n)\) is bounded if there exists a number \(M > 0\) such that \(|x_n| \leqslant M\) for all \(n \in N\)
Geometrically, this means that we can find an interval \([-M, M]\) that contains every term in the sequence \((x_n)\)
Theorem 2.3.2 Every convergent sequence is bounded.Every convergent sequence is bounded.
Proof. Assume \((x_n)\) converges to a limit \(l\). This means that given a particular value of \(\epsilon\), say \(\epsilon = 1\), we know there must exist an \(N in N\) such that if \(n \geqslant N\), then \(x_n\) is in the interval \((l - 1, l + 1)\). Not knowing whether \(l\) is positive or negative, we can certainly conclude that $$ |x_n| < |l| + 1 $$ for all \(n \geqslant N\)
We still need to worry about the terms in the sequence that come before the \(Nth\) term. Because there are only a finite number of these, we let $$ M = max\{|x_1|, |x_2|, |x_3|,...,|x_{N - 1}|, |l| + 1\} $$ It follows that \(|x_n| \leqslant M\) for all \(n \in N\).
Theorem 2.3.3 Algebraic Limit Theorem Let \(\lim a_n = a\), and \(\lim b_n = b\). Then,
Proof.
In the initial step, we subtracted and then added \(ab_n\), wich created an opportunity to use the triangle inequality. Essentially, we have broken up the distance from \(a_nb_n\) to \(ab\) with a midway point and are using the sum of the two distances to overestimate the original distance.
Letting \(\epsilon > 0\) be arbitrary, we again proceed with the strategy of making each piece in the preceding inequality less than \(\epsilon/2\). For the piece on the right-hand side \((|a||b_n - b|)\), if \(a \neq 0\) we can choose \(N_1\) so that $$ n \geqslant N_1 \text{ implies } |b_n - b| < \frac{1}{|a|}\frac{\epsilon}{2} $$ Getting the term on left-hand side \(|b_n||a_n - a|\) to be less than \(\epsilon/2\) is complicated by the fact that we have a variable quantity \(|b_n|\) to contend with as opposed to the constant \(|a|\) we encountered in the right-hand term. The idea is to replace \(|b_n|\) with a worst-case estimate. Using the fact that convergent sequences are bounded, we know there exists a bound \(M > 0\) satisfying \(|b_n| \leqslant M\) for all \(n \in M\). Now we can choose \(N_2\) so that $$ |a_n - a| < \frac{1}{M}\frac{\epsilon}{2} \text{ whenever } n \geqslant N_2 $$ To finish the argument, pick \(N = max{N_1, N_2}\), and observe that if \(n \geqslant N\), then $$ \begin{align} |a_nb_n - ab| &\leqslant |a_nb_n - ab_n| + |ab_n - ab| \\ &= |b_n||a_n - a| + |a||b_n - b| \\ &\leqslant M|a_n - a| + |a||b_n - b| \\ &< M(\frac{\epsilon}{M2}) + |a|(\frac{\epsilon}{|a|2}) = \epsilon \end{align} $$
The trick is to look far enough out into the sequence \(b_n\) so that the terms are closer to b than they are to 0. Consider the particular value \(\epsilon_0 = |b|/2\). Because \((b_n) \to b\), there exists an \(N_1\) such that \(|b_n - b| < |b|/2\) for all \(n \geqslant N_1\). This implies \(|b_n| > |b|/2\)
Next, choose \(N_2\) so that \(n \geqslant N_2\) implies $$ |b_n - b| < \frac{\epsilon|b|^2}{2} $$
Finally, if we let \(N = max\{N_1, N_2\}\), then \(n \geqslant N\) implies $$ |\frac{1}{b_n} - \frac{1}{b}| = |b - b_n|\frac{1}{|b||b_n|} < \frac{\epsilon|b|^2}{2}\frac{1}{|b|\frac{|b|}{2}} = \epsilon $$
Theorem 2.3.4 (Order Limit Theorem) Assume \(\lim a_n = a\) and \(\lim b_n = b\)
Proof.