47.1k views
4 votes
A sequence is defined by the recursive function f(n + 1) = f(n) – 2. If f(1) = 10, what is f(3)? 1 6 8 30

User CatarinaCM
by
8.4k points

2 Answers

2 votes

Answer:

6

Explanation:

User NewUserNameHere
by
8.3k points
2 votes
The value of f(3) would be 6.

Using our formula, we know that f(1) = 10, and f(2) = f(1) - 2 = 10-2 = 8. That means that f(3) = f(2) - 2 = 8 - 2 = 6.
User BKK
by
7.5k points