|
Hey Nelly,
Almost always, the best way to solve sequence problems is to write out a couple terms to get a feel for the pattern. If T1 is 23, and T2 = T1 - 3, then T2 = 20, and we have:
T1 = 23 T2 = 20 T3 = 20 - 3 = 17 T4 = 17 - 3 = 14
Then we can just keep subtracting threes until we get to -4:
T5 = 11 T6 = 8 T7 = 5 T8 = 2 T9 = -1 T10 = -4
You could theoretically get more algebraic with this, but for most sequence problems it's sufficient to jot out a few terms, get a feel for the pattern, and then finish it off as far as necessary.
|