Types of Recurrences and Solution Strategies
1Introduction
Solving a recurrence begins by identifying its order and algebraic structure rather than by selecting a memorized formula. This lecture then reduces each principal type to a simpler sequence or operator equation.
2Classification Terminology
For a recurrence that determines from , its {order} is the largest index gap actually required. Thus has order one. The recurrence has order two when and drops to order one when .
A {linear recurrence} is a linear combination of shifts of the unknown sequence whose coefficients and right-hand side are independent of that sequence. Products of unknown terms, powers, and nonlinear functions of unknown terms are excluded. A standard constant-coefficient form is
When , this is order in the direction of increasing indices. It is homogeneous when and nonhomogeneous when . With the shift operator , this equation is .
3Decision Procedure
| Structure | Quantity to introduce | Reduction |
|---|---|---|
| finite sum | ||
| none | geometric sequence | |
| geometric sequence | ||
| difference form | ||
| geometric sequence | ||
| contains a partial sum | eliminate | |
| finite product | product form | |
| arithmetic sequence | ||
| cross-ratio with fixed points | geometric sequence | |
| higher-order constant-coefficient linear | characteristic polynomial | |
| linear system with multiple states | state vector | matrix iteration |
| congruence or inequality | residue or invariant set | induction on a property |
4Proposition 1: Summing Differences
If for , then
For , the empty sum is zero. For , summing the assumption over makes the left side telescope to . The case gives an arithmetic sequence.
5Proposition 2: First-Order Nonhomogeneous Form
Suppose . If , Proposition 1 gives . If , define the equilibrium and put . Since ,
Therefore
Separating is essential because it prevents division by zero.
6Proposition 3: Variation of Constants
Assume and . Defining gives
Proposition 1 therefore yields
When , the relation determines directly and must be treated separately.
7Proposition 4: Difference Sequences
Suppose and define . Then , so . Proposition 1 gives
The sum is when and when .
8Proposition 5: Second-Order Constant-Coefficient Linear Form
Over a field , consider
If , the order drops. In particular, if , then ; the values are arbitrary and for . Henceforth assume , and let be the characteristic polynomial. If has distinct roots and in a splitting field , every -valued solution has the form
Substitution shows that each component satisfies the recurrence. Unique constants match . The difference from any other solution then has two initial zeros, and induction using the recurrence makes every term zero; hence this is the complete solution.
If has a nonzero repeated root , every solution has the form
This follows by checking that annihilates both and and then using the same uniqueness argument.
9Higher Order and State Vectors
A constant-coefficient homogeneous linear recurrence of order can be written as . A nonzero characteristic root of multiplicity produces solutions corresponding to . A zero root concerns a drop in order or a finite initial segment and must be handled from the original recurrence and initial values. A complete statement must specify a field over which splits.
An order- constant-coefficient homogeneous linear recurrence can be converted to a first-order matrix recurrence by introducing and writing . This does not erase the order; it packages the preceding terms into one state.
10Additional Types
If a relation contains the partial sum , subtract its equation at from its equation at and use to eliminate the partial sum.
The product form gives . The reciprocal form reduces to an arithmetic sequence under , provided every term involved is nonzero.
Suppose the Möbius map satisfies and has distinct finite fixed points , and the denominators and are nonzero. Then some constant satisfies
so is geometric.
A linear system is a matrix iteration of a state vector. For the symmetric two-variable system
the variables and separate it into and .
For an integer sequence satisfying and ,
This is invariance of the gcd of adjacent terms under .
11Problems Asking for Properties
A general term is not always necessary. Reducing an integer-coefficient recurrence modulo produces finitely many residue states. Inequalities and invariant intervals can be proved by induction: verify the initial condition and derive the property of from that of through the update rule.
For a problem asking about a limit, merely identifying a fixed-point candidate does not prove convergence. Limits, continuity, monotonicity, and boundedness are treated rigorously in the subsequent lecture.
12Scope
A ratio-based test requires nonzero denominators, variation of constants requires , and the equilibrium method requires . For nonlinear recurrences, transformations involving reciprocals, logarithms, or ratios of differences from fixed points may be effective, but their domains and invertibility must be checked individually.