Definition: A recursive formula is a way to describe a sequence where each term is defined using one or more preceding terms (usually the previous term). For arithmetic sequences, the core of the recursive formula is to establish the relationship between terms using the common difference (denoted as d, the difference between consecutive terms).
Components:
Initial Term: The first term of the sequence, usually denoted as \(a_1\), which is the starting point of the recursive formula.
Recursive Relation: Specifies the relationship between the n-th term (\(a_n\)) and the previous term (\(a_{n-1}\)). For arithmetic sequences, this relationship is \(a_n = a_{n-1} + d\) (where \(n \geq 2\)).
2. Key Concepts
Difference from Explicit Formula: The explicit formula allows direct calculation of the n-th term using the term number n, with the form \(a_n = a_1 + (n - 1)d\). In contrast, the recursive formula requires knowing the previous term to calculate the current term, relying more on the "recursive nature" of the sequence.
Applicable Scenarios: Recursive formulas are suitable when the initial term and common difference are known, and there is a need to derive subsequent terms step by step. They are particularly convenient when the number of terms is small or when observing the generation process of the sequence.
Role of the Common Difference: The common difference d is crucial in the recursive formula of an arithmetic sequence. It determines the difference between each term and the previous one, serving as the core constant that maintains the recursive relationship.
3. Examples
Easy Level: Given an arithmetic sequence with the first term \(a_1 = 5\) and common difference \(d = 3\), write its recursive formula and find the 3rd term.
Identify the Initial Term and Common Difference: When solving problems related to recursive formulas, first determine the first term \(a_1\) and the common difference d of the sequence. If they are not given directly, they can be derived from known terms (e.g., find the common difference using the difference between two terms, then find the first term based on the relationship between term numbers).
Derive Step by Step: Use the recursive formula \(a_n = a_{n-1} + d\) to calculate subsequent terms one by one starting from the initial term, which is especially suitable for cases with a small number of terms.
Verify Rationality: After calculating the results, verify them using the explicit formula to ensure that each step of the recursive derivation conforms to the properties of arithmetic sequences (the difference between consecutive terms is the common difference).
Distinguish Between Recursive and Explicit Scenarios: The explicit formula is more efficient when there is a need to quickly find a distant term (e.g., the 100th term). However, the recursive formula is more suitable when there is a need to generate the sequence step by step or analyze the dependency between terms.