Part II · Limits, Continuity, and the Calculus Foundation
05
Chapter 5 — Sequences and Infinite Processes
Why This Matters
Many engineering ideas are iterative: a sampled signal is a sequence, a numerical algorithm produces successive approximations, and a transient circuit approaches a steady state. Limits give a precise language for “approaches.”
5.1 Sequences
A sequence is a function whose inputs are positive integers. We write
For example, \(a_n=1/n\) gives \(1,1/2,1/3,\ldots\). Unlike a continuous graph, visualise a sequence as isolated dots above the integer positions \(1,2,3,\ldots\).
A sequence may be explicit, such as \(a_n=3n-1\), or recursive, such as
The recursive rule above is Newton’s iteration for \(\sqrt2\).
A sequence is discrete data. Its input is the positive integer index, so a plotted sequence is a collection of dots rather than a continuous curve. The notation a_n names one term; it does not mean that every real horizontal position is an allowed input.
5.2 Limits of sequences
We say \(a_n\) converges to \(L\), written \(a_n\to L\), if its terms can be made as close to \(L\) as desired by going sufficiently far along the sequence. Formally, for every \(\varepsilon>0\) there is an integer \(N\) such that
The value \(L\) need not appear as a sequence term. For \(a_n=1/n\), no term is zero, but terms eventually fit inside every band \((-\varepsilon,\varepsilon)\) around zero.
Example — An \(\varepsilon\)–\(N\) proof
Prove \(1/n\to0\). Given \(\varepsilon>0\), choose an integer \(N>1/\varepsilon\). For \(n\ge N\),
This proves convergence. The proof works because it tells us exactly how far we must go for any requested accuracy.
The index depends on the requested accuracy. For 1/n, choose an integer beyond 1/ε. Then every later denominator is still larger, so every later term lies in the same ε-band; this proves an eventual statement, not merely a pattern among early dots.
- State a positive tolerance ε.
- Choose an integer N greater than 1/ε.
- Use n ≥ N to bound 1/n by 1/N, then by ε.
5.3 Boundedness and monotonicity
A sequence is bounded above by \(M\) if \(a_n\le M\) for all \(n\), and bounded below by \(m\) if \(a_n\ge m\) for all \(n\). It is non-decreasing if \(a_{n+1}\ge a_n\) and non-increasing if \(a_{n+1}\le a_n\).
The theorem guarantees existence; it does not by itself find the value of the limit. For a recursive sequence, first prove the appropriate bounds and monotonicity, then take limits on both sides of the recursion.
Bounded monotonic motion has somewhere to settle. A non-decreasing real sequence with an upper bound converges, and the reversed statement holds for a non-increasing sequence with a lower bound. This theorem guarantees existence only; a separate limit equation or estimate is needed to identify the value.
- Prove the proposed bound holds for every term.
- Compare consecutive terms to establish monotonicity.
- Use the theorem for existence before solving a fixed-point equation for the limit.
5.4 Series and partial sums
Given a sequence \((a_n)\), the expression
is a series. Its meaning is the limit of partial sums
Do not confuse \(a_n\to0\) with convergence of the series. It is necessary for a series to converge, but it is not sufficient: the harmonic series \(\sum_{n=1}^{\infty}1/n\) diverges even though \(1/n\to0\).
A series is defined through a new sequence. The individual terms a_n and the partial sums S_N answer different questions. Term convergence to zero is necessary, but only convergence of the partial-sum sequence makes the infinite addition finite.
5.5 Sequence limit laws
If \(a_n\to A\) and \(b_n\to B\), then sums, products, and scalar multiples behave as expected:
For rational expressions in \(n\), divide numerator and denominator by the highest power of \(n\) that occurs.
Some sequence limits are not rational expressions. A standard one is
It says that repeatedly taking a root pulls every fixed positive number toward \(1\). One way to see the structure is to write \(a^{1/n}=e^{(\ln a)/n}\): the exponent tends to \(0\), and continuity of the exponential gives the result. This is not a substitution of infinity into an exponent; it is a composition of two ordinary limits.
Example — Dominant powers
We did not substitute “\(\infty\)” for \(n\). Infinity is not an ordinary real number; the division exposes terms whose limits are known.
Limit laws apply to known component limits. Dividing a rational expression by its highest power exposes constants and reciprocal powers whose limits are controlled. It is not substitution of infinity, and a quotient law still requires a non-zero limiting denominator.
- Identify the highest power occurring in numerator and denominator.
- Divide every term by that power.
- Apply the sum and quotient laws only after checking the limiting denominator is non-zero.
Common Mistakes
- Treating a sequence as a continuous curve rather than a discrete list.
- Assuming a limit must equal some term.
- Calling \(0/0\) an answer instead of recognising an indeterminate form.
- Applying a quotient law when the limiting denominator is zero.
5.6 Tails, oscillation, and partial sums
Convergence concerns the tail of a sequence: changing finitely many early terms does not change its limit. Picture a horizontal \(\varepsilon\)-band around \(L\). Once every later dot lies in that band, the definition is met. Oscillation alone does not prevent convergence; what matters is whether the distance to one value shrinks.
Example — an oscillating sequence that converges
For \(a_n=(-1)^n/n\),
Given \(\varepsilon>0\), choose \(N>1/\varepsilon\). Every \(n\ge N\) satisfies \(|a_n|<\varepsilon\), independent of its sign. Thus \(a_n\to0\).
Example — a fixed point needs an existence argument
Let \(a_{n+1}=(a_n+4)/2\) with \(a_1=0\). A possible limit satisfies \(L=(L+4)/2\), giving \(L=4\). To justify taking that limit, observe \(a_n\le4\) and
The sequence is increasing and bounded above, so it converges; only then does the fixed-point calculation determine its limit.
Example — terms tend to zero but partial sums grow
Group the harmonic series:
Every group after the first is at least \(1/2\). The partial sums consequently exceed \(1+m/2\) after \(m\) such groups and are unbounded. Thus \(1/n\to0\) does not imply \(\sum1/n\) converges.
Oscillation is harmless when its size shrinks. The signs of (−1)^n/n alternate, but its distance from zero is exactly 1/n, so its tail enters every epsilon band. In contrast, harmonic partial sums grow because grouped positive terms keep adding a fixed minimum amount.
5.7 A sequence is not the series built from it
The sequence \(a_n\) is a list of individual contributions. The series \(\sum a_n\) is a new object whose values are the partial sums \(S_N=a_1+\cdots+a_N\). A convergent sequence can therefore produce either a convergent or divergent series. The term test only provides a one-way decision: if \(a_n\) fails to approach zero, the series diverges; if it does approach zero, another test is required.
Example — geometric partial sums approach a finite total
For \(a_n=(1/2)^{n-1}\), the terms approach \(0\). More importantly,
Since \((1/2)^N\to0\), \(S_N\to2\). The series converges because the partial sums have a limit, not merely because individual contributions shrink.
Example — a necessary condition that fails immediately
For \(\sum_{n=1}^{\infty}(n+1)/(n+2)\),
The terms do not even become small, so adding infinitely many of them cannot settle to a finite value. No ratio, comparison, or more elaborate test is needed.
Example — recursive convergence and an error estimate
If \(a_{n+1}=(a_n+4)/2\) has limit \(4\), subtract \(4\) from both sides:
Hence \(|a_{n+1}-4|=\tfrac12|a_n-4|\). Every iteration halves the current error. This connects convergence to a practical numerical stopping rule: after \(k\) further steps, the error is at most \(2^{-k}\) times the current error.
Derive the infinite result from a finite identity. For a geometric sum, subtracting half the sum cancels every middle term. Only after obtaining the formula for S_N may we take its limit; for ratio one half, the third partial sum is 1.75 and the limiting total is two.
- Write the finite sum S sub N.
- Subtract one half S sub N so the middle terms cancel.
- Take the limit only after the finite identity is established.
As more terms are added, the geometric partial sums 1, 1.5, 1.75, ... settle toward the limiting total 2.
Exercises
- Decide whether \(a_n=(-1)^n\) converges. Explain geometrically.
- Prove that \(3/(2n+1)\to0\) using the definition.
- Find \(\lim_{n\to\infty}(7n^3-n)/(2n^3+5n)\).
- Find the first five terms of \(a_{n+1}=\frac12(a_n+3/a_n)\) with \(a_1=2\).
- Explain why \(a_n\to0\) is necessary but not sufficient for \(\sum a_n\) to converge.
- Prove \((-1)^n/n\to0\) using an \(\varepsilon\)–\(N\) argument.
- Find a suitable \(N\) so \((3n-1)/(n+2)\) is within \(0.01\) of its limit.
- Establish convergence of \(a_{n+1}=(a_n+4)/2\), \(a_1=0\), before finding its limit.
- For \(a_n=(1/2)^{n-1}\), write \(S_N\) and show \(\lim S_N=2\).
- Use the term test to decide whether \(\sum(n+1)/(n+2)\) can converge.