69.5k views
5 votes
Which sequence could be partially defined by the recursive f (n + 1) = f(n) + 2.5 for n > 1?

User Thinkerou
by
8.0k points

1 Answer

7 votes

Answer:

Explanation:

f(n + 1) = f(n) + 2.5

f(1) = -10

f(2) = f(1) + 2.5 = -10 + 2.5 = -7.5

f(3) = f(2) + 2.5 = -7.5 + 2.5 = -5

f(4) = f(3) + 2.5 = -5 + 2.5 = -2.5

User Vikram R
by
7.6k points