document.write( "Question 1146665: Carlos is going to rent a truck for one day. There are two companies he can choose from, and they have the following prices.
\n" );
document.write( "Company A charges $119 and allows unlimited mileage.
\n" );
document.write( "Company B has an initial fee of $65 and charges an additional $0.90 for every mile driven.
\n" );
document.write( "For what mileages will Company A charge less than Company B?
\n" );
document.write( "Use m for the number of miles driven, and solve your inequality for m.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #768106 by Theo(13342)![]() ![]() You can put this solution on YOUR website! let a = what company A charges. \n" ); document.write( "let b = what company B charges. \n" ); document.write( "a = 119 \n" ); document.write( "b = 65 + .9 * m \n" ); document.write( "m = number of miles driven.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "you want to know the number of miles that will result in company A charging less than company B. \n" ); document.write( "a < b implies that 119 < 65 + .9 * m \n" ); document.write( "subtract 65 from both sides to get: \n" ); document.write( "54 < .9 * m \n" ); document.write( "divide both sides by .9 to get: \n" ); document.write( "54 / .9 < m \n" ); document.write( "this results in 60 < m \n" ); document.write( "this means that m > 60.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "company A charges less than company B when the number of miles driven is greater than 60.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "when the number of miles is 60, company B charges 65 + .9 * 60 = 119. \n" ); document.write( "this is the same as what company A charges.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "when the number of miles is 61, company B charges 65 + .9 * 61 = 119.9. \n" ); document.write( "this is more than company A charges.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the break even point is at 60 miles. \n" ); document.write( "when the number of miles driven is greater than 60, company A charges less than company B.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |