198k views
0 votes
A sequence has its first term equal to 8, and each term of the sequence is obtained by adding 6 to the previous term. If f(n) represents the nth term of the sequence, which of the following recursive functions best defines this sequence?

Answer choices:
f(1) = 6 and f(n) = f(n − 1) + 8; n > 1

f(1) = 8 and f(n) = f(n − 1) + 6; n > 1

f(1) = 8 and f(n) = f(n − 1) + 6n; n > 1

f(1) = 6 and f(n) = f(n − 1) + 8n; n > 1

User Pvomhoff
by
7.7k points

1 Answer

5 votes
"First term equal to 8" means f(1) = 8
This is f(n) when n = 1

The nth term f(n) is found by adding 6 to the previous term f(n-1)
Which is why the recursive step is written as
f(n) = f(n-1) + 6

Put together, the rule is
f(1) = 8
f(n) = f(n-1)+6, when n > 1

So choice B is the answer
User AZhao
by
8.4k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.

9.4m questions

12.2m answers

Categories