document.write( "Question 1105459:  If company A rents a truck for $90 a day and .70 per mile, and company B rents a truck for $60 a day .90 per mile, how many miles must be driven in a day 
\n" );
document.write( " to make company A the better offer. \n" );
document.write( "
| Algebra.Com's Answer #720284 by jim_thompson5910(35256)      You can put this solution on YOUR website! \n" ); document.write( "x = number of miles driven per day\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Total Costs \n" ); document.write( "A = 0.7x+90 \n" ); document.write( "B = 0.9x+60 \n" ); document.write( "Where A is the total cost of going with company A and B is the total cost of going with company B\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "To make A the better offer, it must be cheaper or lower in cost \n" ); document.write( "A < B \n" ); document.write( "0.7x+90 < 0.9x+60 \n" ); document.write( "90-60 < 0.9x-0.7x \n" ); document.write( "30 < 0.2x \n" ); document.write( "0.2x > 30 \n" ); document.write( "x > 30/0.2 \n" ); document.write( "x > 150\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "You need to travel more than 150 miles in a day to have company A be the better offer (ie be cheaper) compared to company B. \n" ); document.write( " \n" ); document.write( " |