Sequences, Recurrence, and Convergence
Define sequences explicitly or recursively, compare arithmetic and geometric change, and sum finite geometric series. Use limits and fixed points to distinguish observed updates from justified convergence claims.
A sequence assigns a value to each index in an ordered set, usually consecutive integers. An explicit rule computes a term directly, while a recurrence rule computes new terms from earlier ones. Studying how those terms behave reveals growth, decay, oscillation, and convergence.
A Sequence Is a Function of an Index
The sequence
can be defined by:
The symbol denotes the term at index . This is an explicit rule: the index alone is enough to compute any term directly. For example:
The index set is part of the definition. Because this sequence begins at , the term is the fifth displayed term. If the same visible list were indexed from , one suitable rule would be .
Exercise: Evaluate an explicit sequence
Let for . What is ?
Compute it first, then check your number.
HintUse the index as the input
Compute .
SolutionSubstitute the requested index
Substitution gives:
Since indexing starts at , this is the sixth displayed term. The subscript identifies a position; it does not multiply by .
A Recurrence Defines Transitions between Terms
The same arithmetic sequence can be defined recursively:
The first equation supplies an initial condition. The second gives the update from the current term to the next one. Both parts are needed: the update rule alone describes many sequences with different starting values.
A recurrence may depend on more than one earlier term. For example, the Fibonacci recurrence
needs two initial values, such as and , before it determines a unique sequence.
Repeated updates in finance, population models, numerical algorithms, and machine learning often have recurrence form. A parameter update, for example, may be written:
This equation defines one transition from the current parameter to the next parameter. It does not state the final value directly.
Exercise: Trace repeated updates
Let and . What is ?
Compute it first, then check your number.
HintWrite each state
Compute , then , then .
SolutionApply the recurrence step by step
Starting from :
Reaching requires three transitions. The subscript counts update steps; it is not multiplication.
Arithmetic and Geometric Rules Produce Different Change
An arithmetic sequence adds a fixed difference :
If it starts at , its explicit form is:
The change is additive: every step has the same difference.
A geometric sequence multiplies by a fixed ratio :
If it starts at , its explicit form is:
For and , the terms are:
Arithmetic sequences change linearly with the index. Geometric sequences change exponentially because each new step multiplies the accumulated result.
Exercise: Distinguish a ratio from a difference
The sequence is geometric. What is its common ratio?
Compute it first, then check your number.
HintCompare consecutive terms multiplicatively
Compute , , and .
SolutionDivide consecutive terms
Each consecutive ratio is the same:
Therefore . The differences are not constant, so the sequence is not arithmetic.
A Series Adds the Terms of a Sequence
A series is a sum of sequence terms. The finite geometric series
contains terms. For , multiply by and subtract:
so:
Factoring the left side and dividing by gives the closed form:
When , every term equals , so instead.
For and :
The formula gives the same result:
Exercise: Evaluate a finite geometric series
What is ?
Select one choice, then check.
HintUse a common denominator
Rewrite as and as .
SolutionAdd the three terms
Using denominator :
This is the finite geometric sum with ratio and indices from through .
Convergence Describes Eventual Closeness
A sequence converges to a limit if its terms become and remain as close to as desired after a sufficiently large index. More precisely, for every tolerance , there is an index such that:
For every positive tolerance epsilon, there is an index such that every term with index at least lies within epsilon of .
We then write:
For:
the terms
converge to . Every finite term remains positive, so convergence does not mean that the sequence must ever equal its limit.
Exercise: Distinguish approaching from reaching
For , which statement is correct?
Select one choice, then check.
HintFollow the multiplier
Each term is half of the preceding positive term.
SolutionDescribe the limiting behavior
Every finite term is positive. Repeated multiplication by makes the terms arbitrarily close to , so:
The sequence approaches its limit without reaching it at a finite index.
For a geometric sequence , the ratio determines the long-run pattern:
- if , the sequence converges to ;
- if , it remains constant at ;
- if and , it alternates and does not converge;
- if and , its magnitude grows without bound.
When , the infinite geometric series also converges:
This is a statement about the limit of its finite partial sums, not an instruction to finish infinitely many additions.
Fixed Points Help Analyze Recurrences
Suppose a recurrence has the form . A fixed point is a value that remains unchanged by the update:
If the sequence converges to and behaves continuously near , then the limit must satisfy this fixed-point equation. The equation identifies a candidate limit; it does not by itself prove that the sequence converges to that candidate.
For example:
has the fixed point found from:
Starting from gives , which suggests convergence toward . A complete proof would still need to justify the long-run claim.
Exercise: Find a fixed point
What is the fixed point of ?
Compute it first, then check your number.
HintSet the update equal to its input
Solve .
SolutionSolve the fixed-point equation
A fixed point remains unchanged, so:
Subtracting from both sides gives , hence . This identifies the fixed point; convergence from a particular initial value is a separate question.
Trace Finite Steps before Claiming a Limit
When reading a recurrence, identify its initial conditions and update rule, then compute several indexed terms without skipping transitions. Look for constant differences or ratios, fixed points, cycles, growth, and decay. These finite observations can suggest long-run behavior, but a convergence claim must say what limit is approached and why the terms eventually remain arbitrarily close to it.