Linked from
The 31 pages that link to Recurrence relation, each with the reason it gives.
CombinatoricsRelated: Many counting quantities are built from smaller instances by recurrence.
SequenceRelated: It specifies a sequence by linking each term to its predecessors.
Continued fractionRelated: Numerators and denominators of convergents follow simple recurrences.
Partial sumRelated: Each partial sum equals the preceding sum plus the next sequence term.
Fibonacci sequenceNarrower topic: The rule adding the two previous terms is a recurrence relation.
RecursionRelated: It describes how recursive work grows as the input size increases.
Merge sortRelated: The relation T(n) = 2T(n/2) + Θ(n) describes merge sort’s running time.
Fixed-point iterationRelated: The iterates form a sequence through the recurrence xₙ₊₁ = g(xₙ).
Recursive definitionRelated: It states the rule that generates later values from the initial terms.
Integer sequenceRelated: Many integer sequences are generated by rules linking successive terms.
Tower of HanoiRelated: The minimum move count satisfies T(n) = 2T(n − 1) + 1.
Master theoremNarrower topic: The theorem takes a particular recurrence form as its input.
Akra–Bazzi methodNarrower topic: Akra–Bazzi applies to a structured family of such equations.
Bohr–Mollerup theoremRelated: The gamma recurrence propagates each value to the next argument.
Hosoya indexRelated: Graph-specific recurrences compute the index by reducing to smaller subgraphs.
Cassini's identityRelated: The Fibonacci recurrence is the basic rule behind Cassini’s relation.
Legendre equationRelated: Adjacent Legendre polynomial degrees are linked by three-term recurrences.