25 points will mark brainlest as part of the save nature campaign the city Forest department has decided to grow more trees to kick off the campaign they start by planting 2 pine trees it has been decided that every year they will increase the amount of trees but 1 tree less than the square of the previous year's count which of the following recursives formulas can be used to determine the total number of tree planted in the future assume there is in limited space for trees and n is the number of years of the program's operation

Respuesta :

Answer:

N(n+1) = N(n)^2 - 1, n>=0, N(0) = 2

or equivalently

N(n) = N(n-1)^2 - 1, n>0, N(0) = 2

Step-by-step explanation:

Year 0 = 2 trees

year 1 = 2^2-1 = 3

year 2 = 3^2-1 =8

year 2 = 8^2-1 =63

...

Recursive formula

Let

n = integer year number

N(n) = number of trees to plant in year n

N(n+1) = N(n)^2-1, n>=0, N(0) = 2

or equivalently

N(n) = N(n-1)^2, n>0, N(0) = 2