answersLogoWhite

0

Each number is -4 times the previous one. That means that you can write a recursive rule as:

f(1) = -3

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

The explicit rule involves powers of -4; you can write it as:

f(n) = -3 * (-4)^(n-1)

User Avatar

Wiki User

10y ago

What else can I help you with?