document.write( "Question 980809: If x represents the amount of medical bills ($), write a function representing the amount of money that you would pay: (for the 20% portion after the initial $50, this can be written as .2(x-50), but that’s not the whole answer!)\r
\n" );
document.write( "\n" );
document.write( "Write a function for:
\n" );
document.write( "You would pay the first $50 of your medical bills and 20% of all bills after that \n" );
document.write( "
Algebra.Com's Answer #601879 by macston(5194)![]() ![]() You can put this solution on YOUR website! . \n" ); document.write( "Y=amount you pay; X=Total medical bill \n" ); document.write( "Y=$50+0.20(X-$50) \n" ); document.write( " |