- #1
recoil33
- 28
- 0
Write a recursive rule for each of the following sequences:
(a) 41, 42.5, 44, 45.5, 47, 48.5, 50, …
(b) 300, 30, 3, 0.3, 0.03, 0.003, …
(c) 2, 6, 8, 14, 22, 36, …
-----------------
a) Tn+1 = Tn + 1.5
b) Tn+1 = 0.1Tn
c) ?
For C, The difference is 4, 2, 6, 8, 14,
I've figured out several terms, but they will only solve individual bits of the recursive term.
Someone please explain how i would go upon figuring out the recursive rule for question c?
(a) 41, 42.5, 44, 45.5, 47, 48.5, 50, …
(b) 300, 30, 3, 0.3, 0.03, 0.003, …
(c) 2, 6, 8, 14, 22, 36, …
-----------------
a) Tn+1 = Tn + 1.5
b) Tn+1 = 0.1Tn
c) ?
For C, The difference is 4, 2, 6, 8, 14,
I've figured out several terms, but they will only solve individual bits of the recursive term.
Someone please explain how i would go upon figuring out the recursive rule for question c?