A store had 100 t-shirts. Each month, 30% of the t-shirts were sold and 25 new t-shirts arrived in shipments. Which recursive function best represents the number of t-shirts in the store, given that f(0) = 100?

Respuesta :

Answer:

[tex]f(a_n) = 0.7f(a_{n-1}) + 25[/tex]

Step-by-step explanation:

The number of t-shirts a in month n is 70% of the number of t-shirts in month n-1 plus 25 because they always sell 30% of the t-shirts and get 25 t-shirts in shipments. [tex]f(0)=100[/tex] can be included as an after-thought.

Answer: The recursive formula is given by

[tex]f(a_n)=0.70f(a_{n-1})+25[/tex]

Step-by-step explanation:

Since we have given that

Number of t-shirts = 100

f(0) = 100

Each time there is 30% of the t-shirt were sold and 25 new t-shirts arrived in shipments.

So, it becomes,

[tex]f(a_n)=(1-0.30)f(a_{n-1})+25\\\\f(a_n)=0.70f(a_{n-1})+25[/tex]

Hence, the recursive formula is given by

[tex]f(a_n)=0.70f(a_{n-1})+25[/tex]