A sequence is a function . We denote it as or simply , where .
We say (or ) if:
In words: For every positive tolerance ε, there exists a natural number N such that all terms after the Nth term are within ε of a.
If a sequence converges, then its limit is unique.
Suppose and with .
Let .
By definition:
For :
This gives , a contradiction. Therefore .
Prove:
Proof:
Given , we need to find such that for :
This is equivalent to .
Choose .
For : . ∎
Prove:
Proof:
We compute:
Given , we need , i.e., .
Choose .
For : . ∎
If converges, then is bounded.
Let . Take .
:
Let .
Then for all .
Let and . Then:
We show .
Given :
Let . For :
Find:
Solution:
Divide numerator and denominator by :
Using limit laws:
Let , , be sequences satisfying:
Then .
Given :
For :
Therefore .
Find:
Solution:
We have , so:
Since and , by Squeeze Theorem:
A sequence is:
A bounded monotone sequence converges.
Let . Since is non-empty and bounded above, by the Completeness Axiom, exists.
We claim .
Given :
Therefore for .
Prove: The sequence converges.
Solution:
One can show that is strictly increasing and bounded above by 3.
By the Monotone Bounded Theorem, it converges. The limit is denoted :
Let be a sequence. If with , then is a subsequence of .
converges to Every subsequence of converges to .
Every bounded sequence has a convergent subsequence.
Method: Every sequence has a monotone subsequence (by peak argument). Since the original is bounded, the monotone subsequence is bounded, hence converges by Monotone Bounded Theorem.
Prove: diverges.
Since , the sequence diverges.
A sequence is a Cauchy sequence if:
A sequence of real numbers converges if and only if it is a Cauchy sequence.
Let . Given , : .
For :
Show: is not Cauchy.
Solution:
This violates the Cauchy criterion, so the harmonic series diverges.
If is a sequence of closed intervals with:
Then :
The sequence is increasing and bounded above by , so it converges to some .
Similarly, is decreasing and bounded below, converging to the same (since ).
Therefore for all , and is unique.
Application: The bisection method for finding roots uses nested intervals. Each step halves the interval, and the intersection gives the root.
The ε-N definition provides a rigorous framework for limits, eliminating ambiguity. It allows us to prove statements about limits with certainty and handle edge cases that intuitive approaches miss.
Think of ε as a tolerance level - how close we want the sequence to be to the limit. N is the starting point after which all terms are within this tolerance. The definition says: no matter how tight we make the tolerance, we can always find a point after which all terms satisfy it.
No! If a sequence converges, its limit is unique. This is a fundamental theorem that we prove using the ε-N definition.
Convergent implies bounded, but the converse is false. The sequence {(-1)^n} is bounded but divergent because it oscillates. However, every convergent sequence must be bounded.
Work backwards: start with |xₙ - a| < ε and algebraically solve for what condition on n makes this true. The resulting expression tells you how to choose N, often using floor functions or adding 1 to ensure N is a natural number.