document.write( "Question 898302: Suppose that Maria has 130 coins consisting of pennies, nickels, and dimes. The number of nickels she has is 40 less than twice the number of pennies; the number of dimes she has is 10 less than three times the number of pennies. How many coins of each kind does she have?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #544729 by lwsshak3(11628)![]() ![]() ![]() You can put this solution on YOUR website! Suppose that Maria has 130 coins consisting of pennies, nickels, and dimes. The number of nickels she has is 40 less than twice the number of pennies; the number of dimes she has is 10 less than three times the number of pennies. How many coins of each kind does she have? \n" ); document.write( "*** \n" ); document.write( "let x=number of pennies \n" ); document.write( "2x-40=number of nickels \n" ); document.write( "3x-10=number of dimes \n" ); document.write( "... \n" ); document.write( "x+(2x-40)+(3x-10)=130 \n" ); document.write( "x+2x-40+3x-10=130 \n" ); document.write( "6x=180 \n" ); document.write( "x=30 \n" ); document.write( "2x-40=60-40=20 \n" ); document.write( "3x-10=90-10=80 \n" ); document.write( "number of pennies=30 \n" ); document.write( "number of nickels=20 \n" ); document.write( "number of dimes=80 \n" ); document.write( " |