A geometric recursive rule defines a term in a sequence by relating it to the preceding term, specifically by multiplying the previous term by a constant ratio.
Here's how to write a geometric recursive rule:
-
Identify the First Term: Determine the first term in the sequence, denoted as a1. This is your starting point.
-
Determine the Common Ratio: Calculate the common ratio, denoted as r. This is the factor you multiply by to get from one term to the next. You can find r by dividing any term by its preceding term (e.g., a2 / a1, a3 / a2, etc.).
-
Write the Recursive Formula: Express the nth term, an, in terms of the (n-1)th term, an-1, and the common ratio, r. The general form of a geometric recursive rule is:
- a1 = (the value of the first term)
- an = an-1 r , for n* > 1
Example
Let's say you have the geometric sequence: 2, 6, 18, 54, ...
-
First Term: a1 = 2
-
Common Ratio: r = 6 / 2 = 3 (or 18 / 6 = 3, or 54 / 18 = 3)
-
Recursive Rule:
- a1 = 2
- an = an-1 3 , for n* > 1
This rule states that the first term is 2, and to find any subsequent term, you multiply the previous term by 3.
Explanation
The recursive rule breaks down the sequence into a step-by-step process. You start with the initial value (a1), and then the second part of the rule tells you how to get the next value based on the previous one. This is different from an explicit formula, which allows you to calculate any term directly without knowing the preceding terms.