Tutorial Week 9
Sequences
Sequences represent a list of numbers, and can be written as \(\{ a_1, a_2, a_3, ... \}\) or \(\{ a_n \}_{n=1}^\infty\), where \(a_n\) is some function defined in terms of n.
For example \(\{ n^2 + 1 \}_{n=1}^\infty = \{1^2 + 1, 2^2 + 1, 3^2 + 1, ... \}\).
One particular property of sequences we’re interested in is their behaviour at infinity.
We say that a sequence \(\{ a_n \}_{n=1}^\infty\) converges if \(\lim_{n \to \infty} a_n = L\) for some real number L. Otherwise, we say it diverges.
Just like with limits of regular functions, the limit rules and theorems still apply here (constant multiple, product of limits, squeeze theorem etc.).
Recurrence Relations
A sequence \(\{ a_n \}\) is a recurrence sequence if each term \(a_n\) is defined in terms of its predecessors (given some initial values for \(a_n\)).
Q1: Show that the sequence \(a_{n+1} = 1 + \frac{1}{1+a_n}\) converges to \(\sqrt{2}\).
Q2: Find the limit of the convergent sequence \(\{ \sqrt{2}, \sqrt{2\sqrt{2}}, \sqrt{2\sqrt{2\sqrt{2}}}, ... \}\).
Monotonic Sequences
A sequence is monotone if each subsequence element in the sequence is strictly increasing or strictly decreasing. This means that either \(a_n \lt a_{n+1}\) or \(a_n \gt a_{n+1}\) for all n.
Q3: Show that the sequence \(a_n = \frac{2n-1}{3n+4}\) is monotonic.
Bounded Monotone Convergence Theorem (MCT)
The MCT states that if some sequence is both monotonic and bounded (\(a_n \le M\) or \(a_n \ge M\) for some M), then that sequence is convergent.