SOLUTION: A cell phone company charges $40 per month for the first 500 minutes and $0.75 for each additional minute. Write a function for the total cost of your monthly bill T(m)
Question 1100946: A cell phone company charges $40 per month for the first 500 minutes and $0.75 for each additional minute. Write a function for the total cost of your monthly bill T(m) Answer by stanbon(75887) (Show Source):
You can put this solution on YOUR website! A cell phone company charges $40 per month for the first 500 minutes and $0.75 for each additional minute. Write a function for the total cost of your monthly bill T(m)
-----
T(m) = 40 + (m-500)0.75 for m >= 500
-----------
Cheers,
Stan H.
----------