Sequences and Convergence
1212 words
6 min read
Visual companion
Python
Type and operator map
Python Week 1: the first filter for runtime behavior
View
Revision summary
What this note is really saying
Short form
# Sequences and Convergence ## 🎯 Learning Objectives By the end of this topic, you will be able to: 1. **Define** a sequence and distinguish it from a function 2.

Sequences and Convergence
🎯 Learning Objectives
By the end of this topic, you will be able to:
- Define a sequence and distinguish it from a function
- Compute limits of sequences and determine convergence/divergence
- Identify monotonic and bounded sequences
- Recognize standard limits and their applications
📋 Prerequisites
- Functions — function notation, domain, range
- Exponent rules — handling powers and fractions
📖 Core Content
10.1 What is a Sequence?
10.1.1 Intuition
A sequence is a list of numbers in a specific order. Like a playlist: track 1, track 2, track 3, ... Each position has a value.
Unlike a set, order matters and repetition is allowed: (1,2,2,3) is a valid sequence.
💡 Why this matters: Sequences model discrete processes: daily stock prices, CPU temperature readings, iterations of an algorithm. In ML, training loss over epochs is a sequence.
10.1.2 Definition
A sequence is a function from N to R: a:N→R. We write an for the n-th term, and {an}n=1∞ or (an) for the whole sequence.
Examples:
- an=n1: (1,21,31,41,…)
- an=n2: (1,4,9,16,…)
- an=(−1)n: (−1,1,−1,1,…)
- an=n+1n: (21,32,43,54,…)
10.2 Limit of a Sequence
10.2.1 Intuition
Does the sequence get arbitrarily close to some number L as n gets large? If so, L is the limit.
- n1 gets close to 0: limit =0
- n2 grows without bound: no finite limit (diverges to ∞)
- (−1)n oscillates: no limit
🔍 Formal definition (epsilon-N): limn→∞an=L if for every ϵ>0, there exists N∈N such that for all n>N, ∣an−L∣<ϵ.
10.2.2 Convergence vs. Divergence
| Behavior | Term | Example |
|---|---|---|
| Approaches a finite L | Converges to L | an=n1→0 |
| Grows without bound | Diverges to ∞ | an=n→∞ |
| Oscillates without settling | Diverges (no limit) | an=(−1)n |
| Settles to a pattern | May converge or diverge | an=sinn diverges |
10.2.3 Standard Limits
\lim_{n\to\infty} \frac{1}{n^p} &= 0 && (p > 0) \\ \lim_{n\to\infty} r^n &= 0 && (|r| < 1) \\ \lim_{n\to\infty} \left(1 + \frac{1}{n}\right)^n &= e \\ \lim_{n\to\infty} \sqrt[n]{n} &= 1 \\ \lim_{n\to\infty} \frac{n^k}{b^n} &= 0 && (b > 1, \text{ exponentials beat polynomials}) \end{aligned}
\begin{aligned} \sqrt{n+1} - \sqrt{n} &= \frac{(\sqrt{n+1} - \sqrt{n})(\sqrt{n+1} + \sqrt{n})}{\sqrt{n+1} + \sqrt{n}} \\ &= \frac{(n+1) - n}{\sqrt{n+1} + \sqrt{n}} = \frac{1}{\sqrt{n+1} + \sqrt{n}} \to 0 \end{aligned}
\boxed{\frac{1}{2}, \frac{2}{3}, \frac{3}{4}, \frac{4}{5}}
\boxed{\frac{3}{2}}
\boxed{\text{Diverges to } \infty}
\boxed{\text{Converges to } 0}
\boxed{1}
\boxed{0}
\boxed{\text{Decreasing}}
\boxed{0}
\boxed{0}
\boxed{e^2}$$ --- ## 🔗 Cross-References - Next topic: [Limits of Functions](/courses/bsma1001/notes/limits-functions) - Related: [Continuity](/courses/bsma1001/notes/limits-continuity) - Across courses: BSMA1003 Maths 2 (series, convergence tests)
Join Discord
Previous6.2 Exponential & Log EquationsNext7.2 Limits of Functions