205k views
0 votes
Enter a recursive rule for the geometric sequence. 5, −10, 20, −40, ...
a1=
an=

User Jeninne
by
3.7k points

1 Answer

4 votes

9514 1404 393

Answer:

  • a[1] = 5
  • a[n] = -2a[n-1]

Explanation:

The first term is the first one on the list:

a[1] = 5

__

The ratio of terms is ...

-10/5 = -2

That is, each term is -2 times the previous one, so the recursive rule is ...

a[n] = -2·a[n-1]

User Ipj
by
3.4k points