5. Using Recursive Rules with Sequences
Sign In
At the beginning of the (n-1)^(th) year the number of trees is a_(n-1). During this year, 10 % of trees are harvested. Therefore, 90 %=0.9 of the old trees remain. Furthermore, 800 new trees are planted. ccccc c Trees at the start of the $n^(th)$ year & =0.9 * & c Trees from previous year & + & New trees ⇓ & & ⇓ & & ⇓ a_n & =0.9 * & a_(n-1) & + & 800 Therefore, we can write a recursive rule: a_1=9000, a_n=0.9a_(n-1)+800 for n>1.
=Round((0.9)*(A1)+800,2)in cell A2. When we hit enter, we will get the following.