document.write( "Question 1101094: Carol has some dimes and quarters if she has 25 coins worth a total of $3.70 how many of each type of coin does she have? \n" ); document.write( "
Algebra.Com's Answer #715665 by greenestamps(13200)\"\" \"About 
You can put this solution on YOUR website!

Let me offer a couple of alternative methods for solving this kind of problem. The other tutor uses a single variable and substitution, which is fine. But I personally prefer either of these other methods.

\n" ); document.write( "Look at all three methods of solution and try each one, to find which one \"works\" best for you.

\n" ); document.write( "1. using two variables and elimination

\n" ); document.write( "let d = the number of dimes
\n" ); document.write( "and q = the number of quarters

\n" ); document.write( "Then
\n" ); document.write( "(a) \"d%2Bq+=+25\" (there are 25 coins total)
\n" ); document.write( "(b) \"10d%2B25q+=+370\" (the total value of the coins is $3.70, or 370 cents)

\n" ); document.write( "Multiply the first equation by 10 (to get \"10d\"), then subtract the resulting equation from the second equation; this eliminates variable d, leaving an equation you can solve for q:
\n" ); document.write( "\"10d%2B10q+=+250\"
\n" ); document.write( "\"15q+=+120\"
\n" ); document.write( "\"q+=+8\"

\n" ); document.write( "Then substitue q=8 in either original equation to find d:
\n" ); document.write( "\"8%2Bq+=+25\"
\n" ); document.write( "\"q+=+17\"


\n" ); document.write( "2. using logical analysis -- which ends up doing basically the same calculations as the elimination method above.

\n" ); document.write( "If all 25 coins were dimes, the total value would be 250 cents; that is 120 cents less than the actual total of 370 cents.
\n" ); document.write( "Each quarter is worth 15 cents more than each dime; so each time we trade in a dime for a quarter, we keep the same number of coins but increase the total by 15 cents.
\n" ); document.write( "To increase the total by 120 cents to get the actual total of 370 cents, the number of quarters has to be 120/15 = 8.
\n" ); document.write( "And then the number of dimes is 25-8 = 17.
\n" ); document.write( "
\n" );