asked 21.5k views
1 vote
A store had 50 bottles of olive oil. Each week, 40% of the olive oil bottles were sold and 20 new bottles arrived in shipments. Which recursive function best represents the number of bottles in the store, given that f(0) = 50?

asked
User Gnubie
by
8.2k points

1 Answer

4 votes

Answer:

f(n) = f(n-1)*.6 + 20

Explanation:

f(0) = 50

f(n) = f(n-1)*.6 + 20

In fact, since f(0) = 50, f(n) = 50.

answered
User Macarena
by
8.1k points
Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.