What is the equation for a billing process that has a one-time fee of $100 and a monthly charge of $25?

1 Answer

For the time in months t=0t=0, the value of the bill equals $100$100.
After 11 month, the amount charged increases in $25$25, to $125$125.

Lets put it on a month -> billmonthbill table:
0->1000100
1 ->100 + 251100+25
2->100 + 25 + 25 = 100 + 2*252100+25+25=100+225
3->100 + 25 + 25 + 25 = 100 + 3*253100+25+25+25=100+325
...
m->100 + 25*m

The bill after m months is given by the equation
B(m) = 100+25.m//

Hope it helps.