asked 10.6k views
5 votes
Write a recursive function for the following geometric sequence ,6,18,54,162

1 Answer

1 vote

Answer:

f(n + 1) = 3f(n) with a₁ = 6

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

answered
User Skjagini
by
9.2k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.