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 #257976 by Theo(13342)![]() ![]() You can put this solution on YOUR website! tires cost $300. \n" ); document.write( "6% sales tax. \n" ); document.write( "10% discount. \n" ); document.write( "$10 disposal fee for old tires not subject to discount.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "your formula if the discount is applied first would be as follows:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "x = cost of the tires.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "t(x) = (.9*x + 10) * 1.06\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "if x = 300, then the cost is (.9*300 + 10) * 1.06 = (270+10)*1.06 = 280*1.06 = $296.80\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "if the tax is applied first and then the discount is applied, your formula would be as follows:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "t(x) = (x+10)*1.06 - (.1*x)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "if x is equal to $300, the cost is $310*1.06 - .1*300 = = $328.60 - $30 = $298.60.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "you pay more if the tax is applied first.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "your discounted price of .9*x stems from x - .10*x which becomes (1-.10)*x which becomes .9*x\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "your cost with tax stems from y + .06*y = (1 + .06)*y = 1.06*y.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "y is the amount of the cost that is taxed.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "if the discount is applied first, then y is equal to (.9*x + 10).\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "if the discount is applied after, then y is equal to (x+10).\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "so we'll go through it again, just to make sure you understand what is happening.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "cost is 300. \n" ); document.write( "apply discount first and the cost is 270. \n" ); document.write( "add 10 to make the total cost 280. \n" ); document.write( "tax 6% * 280 + 280 = 296.8\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "tax first and the cost without the discount is 300 + 10 = 310. \n" ); document.write( "tax 6% * 310 + 310 = 328.6 \n" ); document.write( "subtract discount of 30 to make a total of 298.60.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the difference in the tax you paid is the difference of the tax on the undiscounted price versus the tax on the discounted price.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the difference is 298.6 - 296.8 = 1.80\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( ".06 * 30 = 1.8\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the difference is the tax on the discount.\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |