A recurrence relation defines each term of a sequence using previous terms.
They model feedback, growth, and dependency across mathematics and computation.
Example (Fibonacci):
F(n) = F(nβ1) + F(nβ2)
Applications: algorithms, dynamic programming,
combinatorics, population models.