asked 43.8k views
0 votes
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

1 Answer

5 votes
f(n) = f(n - 1) • 0.7 + 25, n > 0
answered
User Rui Barradas
by
8.5k points
Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.