Definition
Sequence recursion is the method of defining the terms of a sequence by specifying the first few terms (base cases) and a rule (recursive formula) that relates each subsequent term to previous ones.
Why It Matters
Recursion allows us to model complex, repetitive processes with simple, local rules. It is the foundation for everything from financial compounding algorithms to generating fractal geometry.
Core Concepts
- Recursive Formula: Defines the -th term based on preceding terms (e.g., for ).
- How to read: “The a n equals n times a n minus 1.”
- Meaning / when to use: Each term built from previous ones—defines factorials, Fibonacci, and iterative processes.
- Factorials: , with the base case .
- How to read: “N factorial equals n times (n-1) times … times one; zero factorial equals one.”
- Meaning: Product of all positive integers up to ; by convention.
- Base Case Dependency: A recursive sequence cannot be computed without its initial conditions; a missing base case makes the sequence undefined.