The recursive function is f(n + 1) = 2f(n) where f(1) = 4
How to determine the recursive function?
From the graph, we have the following values
f(1) = 4
f(2) = 8
f(3) = 12
Divide f(2) by f(1) to calculate the rate (r)
r = f(2)/f(1)
r = 8/4
r= 2
Substitute r= 2 in r = f(2)/f(1)
f(2)/f(1) = 2
Make f(2) the subject
f(2) = 2f(1)
Express 2 as 1 + 1
f(1 + 1) = 2f(1)
Express 1 as n
f(n + 1) = 2f(n)
Hence, the recursive function is f(n + 1) = 2f(n) where f(1) = 4
Read more about recursive function at:
https://brainly.com/question/1275192
#SPJ1