document.write( "Question 908144: a cashier has 25 coins consisting of nickels dimes and quarters with a value of $4.90.
\n" );
document.write( "If the number of dimes is 1 less than twice th number of nickels how many of each coin does she have? \n" );
document.write( "
Algebra.Com's Answer #550843 by lwsshak3(11628)![]() ![]() ![]() You can put this solution on YOUR website! a cashier has 25 coins consisting of nickels dimes and quarters with a value of $4.90.If the number of dimes is 1 less than twice the number of nickels how many of each coin does she have? \n" ); document.write( "let x=number of nickels \n" ); document.write( "2x-1=number of dimes \n" ); document.write( "25-x-(2x-1)=25-x-2x+1=26-3x=number of quarters \n" ); document.write( ".05x+.10(2x-1)+.25(26-3x)=4.90 \n" ); document.write( ".05x+.20x-.10+6.5-.75x=4.90 \n" ); document.write( "-.50x=4.90+.10-6.5 \n" ); document.write( ".50x=1.5 \n" ); document.write( "x=3 \n" ); document.write( "2x-1=5 \n" ); document.write( "26-3x=17 \n" ); document.write( "number of nickels=3 \n" ); document.write( "number of dimes=5 \n" ); document.write( "number of quarters=17 \n" ); document.write( " |