221k views
3 votes
Which sequence is generated by the function f(n + 1) = f(n) – 2 for f(1) = 10? –10, –12, –14, –16, –18, ... –2, 8, 18, 28, 38, ... 8, 18, 28, 38, 48, ... 10, 8, 6, 4, 2, ...

2 Answers

2 votes

Answer:

D

Explanation:

just took the test

Which sequence is generated by the function f(n + 1) = f(n) – 2 for f(1) = 10? –10, –12, –14, –16, –18, ... –2, 8, 18, 28, 38, ... 8, 18, 28, 38, 48, ... 10, 8, 6, 4, 2, ...-example-1
User Skywall
by
4.6k points
3 votes
Answer:
D

Explanation:

Given

f(n + 1) = f(n) - 2 with f(1) = 10

To generate the sequence substitute values for n into the recursive formula.

f(1) = 10

f(2) = f(1) - 2 = 10 - 2 = 8

f(3) = f(2) - 2 = 8 - 2 = 6

f(4) = f(3) - 2 = 6 - 2 = 4

f(5) = f(4) - 2 = 4 - 2 = 2

The first 5 terms are 10, 8, 6, 4, 2
User FredG
by
4.3k points