Definition 2.1.1: A sequence of real numbers is a function x : ℕ → ℝ,
whose n-th term is denoted x n (often written xₙ), and also denoted
{x_n}_{n=1}^{\infty}. The sequence is bounded if there exists B : ℝ with
|x n| ≤ B for all n. It is bounded below if there is B with B ≤ x n
for all n, and bounded above if there is B with x n ≤ B for all n.
Equations
- RealSequence = (ℕ → ℝ)
Instances For
A real sequence admitting a uniform bound on absolute values.
Instances For
A real sequence with a uniform lower bound.
Equations
- BoundedBelowSequence x = ∃ (B : ℝ), ∀ (n : ℕ), B ≤ x n
Instances For
A real sequence with a uniform upper bound.
Equations
- BoundedAboveSequence x = ∃ (B : ℝ), ∀ (n : ℕ), x n ≤ B
Instances For
Closed balls at the origin are described by absolute values.
A bounded real sequence in the book's sense is equivalent to the image of
the sequence being bounded as a subset of ℝ.
A sequence is bounded above exactly when its range is bounded above as a
subset of ℝ.
A sequence is bounded below exactly when its range is bounded below as a
subset of ℝ.
Definition 2.1.2: A real sequence x converges to l if for every
ε > 0 there is an M : ℕ such that |x n - l| < ε whenever n ≥ M.
Such an l is called a limit of the sequence, and a sequence with some
limit is called convergent (otherwise divergent).
Instances For
A real sequence is convergent if it admits a (necessarily unique) limit.
Equations
- ConvergentSequence x = ∃ (l : ℝ), ConvergesTo x l
Instances For
The book's ε–M definition of convergence agrees with the standard
Filter.Tendsto formulation in mathlib.
A constant real sequence converges to its constant value.
Example 2.1.3: The constant sequence 1, 1, 1, … converges to 1; for any
ε > 0 one may take M = 1, giving |x n - x| = |1 - 1| < ε for every n.
Example 2.1.4: The sequence x n = 1 / n (starting at n = 1) is
convergent with limit 0; the proof picks M with 1 / M < ε by the
Archimedean property and then estimates |x n - 0| ≤ 1 / M for all n ≥ M.
Example 2.1.5: The alternating sign sequence {(-1)^n} is divergent. If it
had a limit x, then taking ε = 1/2 and comparing an even term and the next
odd term would force both |1 - x| < 1/2 and |-1 - x| < 1/2, which is
impossible.
Proposition 2.1.6: A convergent sequence has a unique limit. If a real
sequence converges to both l and l', then l = l'.
Proposition 2.1.7: Every convergent real sequence is bounded.
Definition 2.1.9: A sequence {x_n} is monotone increasing if
x n ≤ x (n + 1) for every n, monotone decreasing if x n ≥ x (n + 1) for
every n, and monotone if it is either monotone increasing or monotone
decreasing.
Equations
- MonotoneIncreasingSequence x = ∀ (n : ℕ), x n ≤ x (n + 1)
Instances For
A real sequence with nonincreasing successive terms.
Equations
- MonotoneDecreasingSequence x = ∀ (n : ℕ), x n ≥ x (n + 1)
Instances For
A real sequence that is either increasing or decreasing.
Equations
Instances For
A bounded monotone increasing real sequence converges to the supremum of its range.
A bounded monotone decreasing real sequence converges to the infimum of its range.
Theorem 2.1.10 (monotone convergence theorem): A monotone sequence
{x_n} is bounded if and only if it is convergent. If {x_n} is monotone
increasing and bounded, then its limit equals sup {x_n : n ∈ ℕ}; if
monotone decreasing and bounded, then its limit equals inf {x_n : n ∈ ℕ}.
The book's notion of a monotone increasing sequence agrees with Monotone
on ℕ.
The book's notion of a monotone decreasing sequence agrees with Antitone
on ℕ.
Example 2.1.11: The sequence x n = 1 / √(n + 1) is bounded below by 0,
monotone decreasing since √(n + 2) ≥ √(n + 1), and hence bounded. By the
monotone convergence theorem its limit equals its infimum, which is 0, so
lim_{n → ∞} 1 / √(n + 1) = 0.
Example 2.1.12: The harmonic partial sums 1 + 1/2 + … + 1/n form a
monotone increasing sequence. Although the growth is slow, the sequence is not
bounded above and therefore does not converge; this unboundedness will be
proved later using series.
Proposition 2.1.13: For a nonempty bounded subset S ⊆ ℝ there are
monotone sequences {x_n} and {y_n} with terms in S such that
lim_{n → ∞} x_n = sup S and lim_{n → ∞} y_n = inf S.
Definition 2.1.14: For a real sequence x and K ∈ ℕ, the K-tail
(tail) is the sequence starting at the (K+1)-st term, written
{x_{n+K}}_{n=1}^{∞} or {x_n}_{n=K+1}^{∞}.
Equations
- sequenceTail x K n = x (n + (K + 1))
Instances For
A convergent sequence remains convergent after removing finitely many initial terms; the limit is unchanged.
If a tail of a sequence converges, then so does the whole sequence, with the same limit.
Proposition 2.1.15: For a real sequence {x_n}, the following are
equivalent: (i) the sequence converges; (ii) every K-tail
{x_{n+K}}_{n=1}^{∞} converges for all K ∈ ℕ; (iii) some K-tail converges.
Moreover, whenever these limits exist, they agree for all K, so
lim_{n → ∞} x_n = lim_{n → ∞} x_{n+K}.
If some tail of a real sequence converges, then the entire sequence converges, and conversely a convergent sequence has a convergent tail.
Any limit of a sequence agrees with the limit of each of its tails.
Definition 2.1.16: Given a real sequence {x_n} and a strictly increasing
sequence of indices n₁ < n₂ < n₃ < …, the extracted sequence i ↦ x (n i) is
called a subsequence of {x_n}.
the strictly increasing indexing function
n_iselecting terms of the original sequence- strictlyIncreasing : StrictMono self.indices
Instances For
The indices of a subsequence eventually dominate their position:
i ≤ n_i for all i.
The subsequence of x determined by the index data s.
Equations
- s.asSequence i = x (s.indices i)
Instances For
A real sequence y is a subsequence of x if it arises by composing x
with a strictly increasing index map.
Equations
- IsRealSubsequence x y = ∃ (s : RealSubsequence x), y = s.asSequence
Instances For
Proposition 2.1.17: If a real sequence {x_n} converges, then every
strictly increasing subsequence {x_{n_i}} also converges, with the same
limit as the original sequence: lim_{n → ∞} x_n = lim_{i → ∞} x_{n_i}.
Example 2.1.18: A sequence can have convergent subsequences without being
convergent itself. The alternating sequence 0, 1, 0, 1, … is defined by
x n = 0 for odd n and x n = 1 for even n; its even-indexed subsequence
converges to 1, its odd-indexed subsequence converges to 0, but the
full sequence is divergent. Compare Proposition 2.1.15.
Instances For
The alternating zero–one sequence diverges, even though its even subsequence
converges to 1 and its odd subsequence converges to 0.