document.write( "Question 603431: i have 100 dollars and need to buy a hundred items and one item cost 3 dollars the other cost .50 cents and the last one cost 10 dollars how many of each will i have
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #380702 by AnlytcPhil(1806)![]() ![]() You can put this solution on YOUR website! i have 100 dollars and need to buy a hundred items and one item cost 3 dollars the other cost .50 cents and the last one cost 10 dollars how many of each will i have \n" ); document.write( " \r\n" ); document.write( "Let x = number of $3 items\r\n" ); document.write( "Let y = number of $.50 items\r\n" ); document.write( "Let z = number of $10 items\r\n" ); document.write( "\r\n" ); document.write( " x + y + z = 100 <--item equation\r\n" ); document.write( "3x + .5y + 10z = 100 <--money equation\r\n" ); document.write( "\r\n" ); document.write( "Clear the decimal of the second equation by multiplying it through by 2\r\n" ); document.write( "\r\n" ); document.write( " x + y + z = 100\r\n" ); document.write( "6x + y + 20z = 100\r\n" ); document.write( "\r\n" ); document.write( "Subtracting the first equation from the second gives\r\n" ); document.write( "\r\n" ); document.write( "5x + 19z = 100\r\n" ); document.write( "\r\n" ); document.write( "Solve for x:\r\n" ); document.write( "\r\n" ); document.write( " 5x = 100 - 19z\r\n" ); document.write( " x = 20 -\n" ); document.write( " |