120k views
2 votes
Drag each number to the correct location on the statements. Not all numbers will be used. Consider the sequence below. -3, -12, -48, -192, ... Complete the recursively-defined function to describe this sequence. f(1) = f(n) = f(n-1) × for n = 2, 3, 4 ... 2 4 -3 3 -4 12

User Arkon
by
7.0k points

1 Answer

2 votes

Solution:

Given he sequence

-3, -12, -48, -192, ...

The common ratio = -12/-3 = 4

F(1) = -3

f(n) = f(n-1).4

User JJTO
by
6.9k points