Sign In
Pay close attention to how the consecutive terms are related.
a_1=16, a_2=9, 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.
We can see above that neither the ratios nor the differences are the same. Therefore, the sequence is neither geometric nor arithmetic, so we have to look for another pattern. To do so we need to consider how the consecutive terms are related. Let's take a look at the differences between pairs of consecutive terms. ccccc a_2-a_1&=& 9-16&=& - 7 [1.2em] a_3-a_2&=& 7-9 &=& - 2 [1.2em] a_4-a_3&=& 2-7&=& - 5 [1.2em] a_5&=& 5 [2em] ... & & ... & & ...
a_(n-1)-a_(n-2)=- a_n ⇕ a_(n-2)-a_(n-1)=a_n |
We can see above that the difference between the consecutive terms equals - a_n. Therefore, to obtain the value of the term in the n^(th) position, we need to subtract the previous term a_(n-1) from the term a_(n-2). With this information and knowing that the first and second term equal 16 and 9 we can write the recursive formula. a_1=16, a_2=9, a_n=a_(n-2) - a_(n-1)