document.write( "Question 1028464: George has $7.50 in dimes and nickels. He has 15 more nickels than dimes. How many of each coin does he have? \n" ); document.write( "
| Algebra.Com's Answer #643599 by robertb(5830)     You can put this solution on YOUR website! 0.05n+0.10d = 7.50 from the first statement. \n" ); document.write( "==> 5n + 10d = 750 ==> n + 2d = 150 <---Equation A\r \n" ); document.write( "\n" ); document.write( "n = d+15 \r \n" ); document.write( "\n" ); document.write( "n - d = 15 <---Equation B\r \n" ); document.write( "\n" ); document.write( "from the second statement.\r \n" ); document.write( "\n" ); document.write( "Subtract Equation B from Equation A (corresponding sides):\r \n" ); document.write( "\n" ); document.write( "3d = 135 ==> d = 45, the number of dimes.\r \n" ); document.write( "\n" ); document.write( "==> n = 45 + 15 = 60, the number of nickels. \n" ); document.write( " |