5. Using Recursive Rules with Sequences
Sign In
Pay close attention to how the consecutive terms are related.
a_1=6, a_n=n * 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) = n |
We can see above that the quotient between the consecutive terms equals n. Therefore, to obtain the value of the term in the n^(th) position, we need to multiply the previous term by n. With this information and knowing that the first term equals 6, we can write the recursive formula. a_1=6, a_n=n * a_(n-1)