récurrence
In mathematics, récurrence, often translated as recurrence or recursion, refers to a method where a problem is solved by breaking it down into smaller, similar subproblems. This typically involves defining a function or sequence in terms of itself. A common example is the Fibonacci sequence, where each number is the sum of the two preceding ones. The definition typically includes a base case, which provides a direct solution for the simplest form of the problem, and a recursive step, which describes how to solve a larger problem using the solution of a smaller one. This process continues until the base case is reached.
Recurrence relations are fundamental in various areas of mathematics, including combinatorics, computer science, and discrete mathematics.