document.write( "Question 903538: Zachary has nickels, dimes and quarters in his piggy bank. He has 58 coins with a total value of $6.50. There are twice as many dimes as nickels. How many of each coin does he have? \n" ); document.write( "
Algebra.Com's Answer #548117 by lwsshak3(11628)![]() ![]() ![]() You can put this solution on YOUR website! Zachary has nickels, dimes and quarters in his piggy bank. He has 58 coins with a total value of $6.50. There are twice as many dimes as nickels. How many of each coin does he have? \n" ); document.write( "*** \n" ); document.write( "let x=number of nickels \n" ); document.write( "2x=number of dimes \n" ); document.write( "58-(x+2x)=58-3x=number of quarters \n" ); document.write( ".05x+.10*2x+.25(58-3x)=6.50 \n" ); document.write( ".05x+.20x+14.50-.75x=6.50 \n" ); document.write( ".50x=8.00 \n" ); document.write( "x=16 \n" ); document.write( "2x=32 \n" ); document.write( "58-3x=10 \n" ); document.write( "number of nickels=16 \n" ); document.write( "number of dimes=32 \n" ); document.write( "number of quarters=10 \n" ); document.write( " |