What is the recursive formula for this sequence? 12, 16, 20, 24, 28, ...
Question
Answer:
The answer is A, recursion uses the previous answer to solve the next answer so:If a sub 1 is 12
Then a sub 2 = 12 + 4 = 16
Therefore a sub n = a sub (n - 1) + 4
solved
general
10 months ago
6071