document.write( "Question 225980: A jar contains 40 coins consisting of dimes and quarters and having a total value of $4.90. How many of each kind of coin are there?\r
\n" );
document.write( "\n" );
document.write( "I know that somehow I use .1d+.25q=$4.90 but I don't know how to add the 40 in there. Help please! \n" );
document.write( "
Algebra.Com's Answer #168427 by edjones(8007)![]() ![]() You can put this solution on YOUR website! Let d=number of dimes, q=number of quarters \n" ); document.write( "d+q=40 \n" ); document.write( "q=40-d \n" ); document.write( ".1d+.25q=4.9 good work. \n" ); document.write( ".1d+.25(40-d)=4.9 \n" ); document.write( ".1d+10-.25d=4.9 \n" ); document.write( "-.15d=-5.1 \n" ); document.write( "d=34 \n" ); document.write( "q=6 \n" ); document.write( ". \n" ); document.write( "Ed \n" ); document.write( " |