Sign In
Use a table to organize the terms and find the pattern.
a_1=128, a_n=- 1/4a_(n-1)
A recursive rule gives the first term or terms of a sequence and describes how each term is related to the preceding term(s) with a recursive equation. For example, arithmetic and geometric sequences can be described recursively.
| Example Arithmetic Sequence | Example Geometric Sequence |
| Recursive Equation | |
| a_1=3 , a_n = a_(n-1) + 2 | a_1=5 , a_n = a_(n-1) * 2 |
One particularly well-known sequence that is defined recursively is the Fibonacci sequence, in which each term is the sum of the two previous terms. Its first few terms are 1, 1, 2, 3, 5, 8 ... As shown, the first two terms are 1 and 1 and each subsequent term will be the sum of the previous two terms.
For every term after the second term, the sequence can be expressed by the following recursive rule. &a_1 = 1 &a_2 = 1 &a_n = a_(n - 1) + a_(n - 2). This means that, in order to determine the fourth term of the sequence, a_4, one must have the terms a_3 and a_2. a_4 = a_3 + a_2=2+1=3 The sequence is named after the Italian mathematician Leonardo Fibonacci, who used it to describe how pairs of rabbits increases as they multiply under certain conditions. Sometimes, the first two numbers are defined as a_1=0 and a_2=1. This, however, does not change the sequence in any way other than by increasing the index of every term by one compared to the previously mentioned definition.