High School

We appreciate your visit to A store had 150 laptops in the month of January Every month 20 of the laptops were sold and 10 new laptops were stocked in. This page offers clear insights and highlights the essential aspects of the topic. Our goal is to provide a helpful and engaging learning experience. Explore the content and find the answers you need!

A store had 150 laptops in the month of January. Every month, 20% of the laptops were sold and 10 new laptops were stocked in the store.

Which recursive function best represents the number of laptops in the store \( f(n) \) after \( n \) months?

A. \( f(n) = 150 - 0.8 \times f(n - 1) + 10, \, f(0) = 150, \, n > 0 \)

B. \( f(n) = 0.2 \times f(n - 1) + 10, \, f(0) = 150, \, n > 0 \)

C. \( f(n) = 0.8 \times f(n - 1) + 10, \, f(0) = 150, \, n > 0 \)

D. \( f(n) = 150 + 0.8 \times f(n - 1) + 10, \, f(0) = 150, \, n > 0 \)

Answer :

N. f(n)
0 150
1 .8 (150)+10
2. ......

The answer is c

hoping this helps

Thanks for taking the time to read A store had 150 laptops in the month of January Every month 20 of the laptops were sold and 10 new laptops were stocked in. We hope the insights shared have been valuable and enhanced your understanding of the topic. Don�t hesitate to browse our website for more informative and engaging content!

Rewritten by : Barada

Answer:

Option C is the correct answer.

Step-by-step explanation:

Let us find the amount of laptops available.

n = 0, Laptops = 150

n = 1 , Laptops = 150 - 0.2 x 150 + 10 = 0.8 x 150 + 10 = 130

n = 2, Laptops = 130 - 0.2 x 130 + 10 = 0.8 x 130 + 10 = 114

So we have f(0) = 150.

f(1) = 0.8f(0)+10

f(2) = 0.8f(1)+10

Similarly f(n) = 0.8f(n-1)+10

Option C is the correct answer.