document.write( "Question 361922: You go to a local mechanic to get your tires changed. The tires cost $300. There is a 6% sales tax, but you get a 10% discount. There is also a $10 non-taxable disposal fee for your old tires, which the mechanic tells you is not subject to discount.\r
\n" );
document.write( "\n" );
document.write( "Write a function, t(x) for the total purchase amount after taxes but before discounts and fees.Does it matter whether the mechanic adds the tax first or takes the discount first?
\n" );
document.write( " I really need some help with this problem everything I have tried hasn't been right. \n" );
document.write( "
Algebra.Com's Answer #257960 by mananth(16946)![]() ![]() You can put this solution on YOUR website! tyre = $300 \n" ); document.write( "let x be the tyre cost \n" ); document.write( "tax = 6% \n" ); document.write( "function with no discount and fees \n" ); document.write( "t(x)= x+0.06x \n" ); document.write( "... \n" ); document.write( "BEFORE DISCOUNT \n" ); document.write( "Price 300 add 6% tax = 318 \n" ); document.write( "discount 10% = 31.8 \n" ); document.write( "318-31.8=$286.2 \n" ); document.write( ".. \n" ); document.write( "AFTER DISCOUNT \n" ); document.write( "price = 300 \n" ); document.write( "10% discount \n" ); document.write( "price = 300-30=270 \n" ); document.write( "270*1.06 =286.2 \n" ); document.write( ".. \n" ); document.write( "how does it matter ? \n" ); document.write( "m.ananth@hotmail.ca \n" ); document.write( "... \n" ); document.write( "m.ananth@hotmail.ca \n" ); document.write( " |