Consider the first three terms of the sequence below.14,000, 12,600, 11,340, ....Complete the recursively-defined function to describe this sequence.f(1) =f(an) = f(n = 1)for n > 2The next term in the sequence is

Respuesta :

Given the sequence: 14,000 , 12,600 , 11,340 , ......................

So,

f(1) is the first term = 14,000

f(n) = f(n-1) * 0.9

The next term = 11,340 * 0.9 = 10,206