A cell phone plan has $700$ minutes of talking for $20$ dollars with each additional minute over $700$ minutes costing $10$ cents per minute.
I had $f(x)=0.1t-50$ but then I plugged in $0$ and got $-50$ which is wrong.
I'm pretty confused right now.
It's a conditional function:
t = minutes in whole minutes.
f(t) = 20 if t <= 700;
f(t) = .1*t - 50; if t > 700
======
If you want to get technical. Let floor(t) = the largest integer equal or less than t. (This is a stepwise non-continuous function).
f(t) = 20 if t<=700.
f(t) = .1*floor(t) - 50; if t > 700.