Ask Question
3 October, 01:40

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

+3
Answers (1)
  1. 3 October, 05:02
    0
    "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
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “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 ...” in 📘 Mathematics if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers