126k views
1 vote
Mohamed decided to track the number of leaves on the tree in his backyard each year The first year there were 500 leaves Each year thereafter the number of leaves was 40% more than the year before Let f(n) be the number of leaves on the tree in Mohameds back yard in the nth year since he started tracking it Complete the recursive formula for f(n) f(1) = f(n)= f(n-1)

User Nezreli
by
6.1k points

2 Answers

1 vote

Answer:

Answer would be


f(0) = 500 \\f(n+1) = f(n)+0.4*f(n)

Explanation:

Year 0 you have 500 but, year 1 you have 500+0.4*500 , and the next year you have 40% more, therefore the recursive formula would be


f(0) = 500 \\f(n+1) = f(n)+0.4*f(n)

User Mark Borgerding
by
5.5k points
2 votes

Answer:

The required recursive formula is


f(n)= 500*(1.4)^(n-1)\\

Explanation:

Mohamed decided to track the number of leaves on the tree in his backyard each year.

The first year there were 500 leaves


Year \: 1 = 500

Each year thereafter the number of leaves was 40% more than the year before so that means


Year \: 2 = 500(1+0.40) = 500* 1.4\\

For the third year the number of leaves increase 40% than the year before so that means


Year \: 3 = 500* 1.4(1+0.40) = 500 * 1.4^(2)\\

Similarly for fourth year,


Year \: 4 = 500* 1.4^(2)(1+0.40) = 500* 1.4^(3)\\

So we can clearly see the pattern here

Let f(n) be the number of leaves on the tree in Mohameds back yard in the nth year since he started tracking it then general recursive formula is


f(n)= 500*(1.4)^(n-1)\\

This is the required recursive formula to find the number of leaves for the nth year.

Bonus:

Lets find out the number of leaves in the 10th year,


f(10)= 500*(1.4)^(10-1)\\\\f(10)= 500*(1.4)^(9)\\\\f(10)= 500*20.66\\\\f(10)= 10330

So there will be 10330 leaves in the 10th year.

User Lcgodoy
by
5.2k points