A store had 250 bottles of water. Each week, 40% of the bottles were sold and 48 new bottles arrived in shipments. Which recursive function best represents the number of bottles of water in the store, given that f(0) = 250?
f(n) = f(n − 1) ⋅ 0.6 + 48, n > 0
f(n) = 250 − f(n − 1) ⋅ 0.4 + 48, n > 0
f(n) = f(n − 1) ⋅ 0.4 + 48, n > 0
f(n) = 250 − f(n − 1) ⋅ 0.6 + 48, n > 0
5 answers
f(n) = f(n − 1) ⋅ 0.6 + 48, n > 0
thx so much :))))
was is the right answer?
IS THIS THE RIGHT ANSWER I AM EXTREMELY STUCK ON THIS AND I RLLY NEED THIS ANSWER (Not to be desperate but...) I would really appreciate if someone could verify if its the right one :D
no its wrong