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}\).

../../_images/64.jpeg

Q2: Find the limit of the convergent sequence \(\{ \sqrt{2}, \sqrt{2\sqrt{2}}, \sqrt{2\sqrt{2\sqrt{2}}}, ... \}\).

../../_images/56.jpeg

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.

../../_images/317.jpeg

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.

Q4: Show how you can use MCT to prove that the sequence \(\{ \frac{n}{e^n} + 1 \}\) is convergent.

../../_images/414.jpeg