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? f(n) = f(n - 1) • 0.3 + 25, n > 0 f(n) = 100 - f(n - 1) • 0.3 + 25, n > 0 f(n) = f(n - 1) • 0.7 + 25, n > 0 f(n) = 100 - f(n - 1) • 0.7 + 25, n > 0
HI!!
if 30% of the t shirts were sold, then 70% remain
So it would not be B right?
no it would not
How would I solve this?
70% is \(.7\) so go with \[f(n)=f(n-1)\times .7+25\]
the new amount is 70% of the previous amount, plus 25
don't worry about the 100, that is just the condition \(f(0)=100\) it is not in the recursion
okay, so now what is the next step?
there is no next step, that is the answer
It would be C right ?
@welshfella , @Ashsmashum1290
yes misty is absolutely correct
Join our real-time social learning platform and learn together with your friends!