document.write( "Question 995093: John has $6.10 in dimes and quarters. If he has 37 coins in total how many of each does he have
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #613953 by lwsshak3(11628)![]() ![]() ![]() You can put this solution on YOUR website! John has $6.10 in dimes and quarters. If he has 37 coins in total how many of each does he have \n" ); document.write( "let x=number of dimes \n" ); document.write( "37-x= number of quarters \n" ); document.write( ".10x+.25(37-x)=6.10 \n" ); document.write( ".10x+9.25-.25x=6.10 \n" ); document.write( ".15x=3.15 \n" ); document.write( "x=21 \n" ); document.write( "37-x=16 \n" ); document.write( "number of dimes=21 \n" ); document.write( " number of quarters=16 \n" ); document.write( " |