Create a recursive function to model the table of values from part A. In that function, the year 2013 is the first data point, so n = 1 for 2013 (meaning f(1) = 2,000 is the first term of the sequence) and r is the constant value by which the number increases every year.
f(n)=

Create a recursive function to model the table of values from part A In that function the year 2013 is the first data point so n 1 for 2013 meaning f1 2000 is t class=

Respuesta :

In year 1 (2013) we had 2000 trees. This is our starting point

In year 2 (2014) we add 200 new trees, bringing the total to 2200.

In year 3 200 2400.

and so on.


So: the number of trees we have in the nth year is the number of trees in the

previous year, plus 200. This is a recursive function.


a(n+1) = a(n) + 200, where a(1) =2000.


Note that a(2) = 2200

a(4) = 2600

a(5) = 2800

and so on.