5. Using Recursive Rules with Sequences
Sign In
Pay close attention to how the consecutive terms are related.
a_1=1, a_2=4, a_n=a_(n-2) + a_(n-1)
We want to write a recursive rule for the given sequence. To do that, we first need to identify whether the given sequence is arithmetic, geometric, or neither. To do so we will calculate the difference and ratio between consecutive terms.
|
a_n-a_(n-1) = a_(n-2) |
We can see above that the difference between the consecutive terms equals a_(n-2). Therefore, to obtain the value of the term in the n^(th) position, we need to add two previous terms a_(n-2) and a_(n-1). With this information and knowing that the first and second term equal 1 and 4 we can write the recursive formula. a_1=1, a_2=4, a_n=a_(n-2) + a_(n-1)