document.write( "Question 1113987: Suppose Tom has 17 coins totaling $2.60. If he has only dimes and quarters, how many of each type does he have?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #729018 by addingup(3677)![]() ![]() You can put this solution on YOUR website! d + q = 17 subtract q from both sides: \n" ); document.write( "d = 17 - q We'll use this value for d below: \n" ); document.write( "0.10d + 0.25q = 2.60 \n" ); document.write( "0.10(17-q) + 0.25q = 2.60 \n" ); document.write( "1.7 - 0.10q + 0.25q = 2.60 \n" ); document.write( "0.15q = 0.9 \n" ); document.write( "q = 0.9/0.15 = 6 he has 6 quarters \n" ); document.write( "d = 17- 6 = 11 he has 11 dimes \n" ); document.write( "---------------------------------------- \n" ); document.write( "check: \n" ); document.write( "6(0.25) + 11(0.10) = 2.60 \n" ); document.write( "1.5 + 1.10 = 2.60 Correct \n" ); document.write( " |