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.