Ask Question
4 November, 23:12

Write a recursive function for the following geometric sequence, 6,18,54,162

+4
Answers (1)
  1. 5 November, 02:39
    0
    f (n + 1) = 3f (n) with a₁ = 6

    Step-by-step explanation:

    The common ratio r of the geometric sequence is

    r = 18 : 6 = 3

    Thus to obtain the next term in the sequence multiply the previous term by 3

    Expressing this as a recursive function then

    f (n + 1) = 3f (n) with a₁ = 6
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Write a recursive function for the following geometric sequence, 6,18,54,162 ...” 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