document.write( "Question 101218: 15 books are being bought. Some cost $8.50 each, the remainder cost $9.50 each. Estimate the least number of books that can be bought at $8.50 each if the total cost must not be more than $135.50. \n" ); document.write( "
Algebra.Com's Answer #73690 by Nate(3500)![]() ![]() ![]() You can put this solution on YOUR website! x = number of cheaper books \n" ); document.write( "y = number of more expensive books \n" ); document.write( "x + y = 15 or y = 15 - x \n" ); document.write( "8.5x + 9.5y =< 135.5 \n" ); document.write( "Plug: \n" ); document.write( "8.5x + 9.5(15 - x) =< 135.5 \n" ); document.write( "8.5x + 9.5(15 - x) =< 135.5 \n" ); document.write( "8.5x + 142.5 - 9.5x =< 135.5 \n" ); document.write( "-x =< -7 \n" ); document.write( "x >= 7 \n" ); document.write( "Atleast 7 books ... least amount being seven \n" ); document.write( " |