What are the first five terms of the recursive sequence?
![What are the first five terms of the recursive sequence class=](https://us-static.z-dn.net/files/d13/bef19c2cd7c4430b54985610e963a4da.png)
9, 30, 93, 282, 849
====================================================
Explanation:
The first term is 9 because of the notation [tex]a_1 = 9[/tex]
To get the second term, we use the recursive rule given to us which is
[tex]a_n = 3a_{n-1} + 3[/tex]
I recommend using parenthesis to separate things like this
[tex]a_n = 3(a_{n-1}) + 3[/tex]
If n = 2, then,
[tex]a_n = 3(a_{n-1}) + 3\\\\a_2 = 3(a_{2-1}) + 3\\\\a_2 = 3(a_{1}) + 3\\\\a_2 = 3(9) + 3\\\\a_2 = 27 + 3\\\\a_2 = 30[/tex]
The second term is 30.
You can use the same idea as above to find the third term, or you can use this slightly different approach
[tex]\text{third term} = 3*(\text{second term}) + 3\\\\\text{third term} = 3*(30) + 3\\\\\text{third term} = 90 + 3\\\\\text{third term} = 93[/tex]
To generate any new term, we first triple the previous term and then add on 3.