document.write( "Question 157328: Solve the problem. Joe has a collection of nickels and dimes that is worth $6.00. If the number of dimes were doubled and the number of nickels were increased by 6, the value of the coins would be $9.90. How many dimes does he have? \n" ); document.write( "
Algebra.Com's Answer #115999 by gonzo(654)![]() ![]() ![]() You can put this solution on YOUR website! let n = original number of nickels and d = original number of dimes. \n" ); document.write( "a nickel is worth .05 cents so value of n nickels is .05*n. \n" ); document.write( "a dime is worth .10 cents so value of d dimes is .10*n. \n" ); document.write( "first equation is .05*n + .10*d = 6.00 dollars. \n" ); document.write( "second equation says if you add 6 nickels and double the number of dimes you get $9.90. \n" ); document.write( "second equation would then be .05*(n+6) + .10*(2*d) = 9.90 \n" ); document.write( "this becomes .05*n + .05*6 + .2*d = 9.90. \n" ); document.write( "this becomes .05*n + .30 * .2*d = 9.90. \n" ); document.write( "this becomes .05*n + .2*d = 9.90 - .30 \n" ); document.write( "this finally becomes .05*n + .2*d = 9.60. \n" ); document.write( "now we have 2 equations that need to be solved simultaneously. \n" ); document.write( ".05*n + .1*d = 6.00 \n" ); document.write( ".05*n + .2*d = 9.60 \n" ); document.write( "since if we subtract the top equation from the bottom equation, the n will cancel out, we don't have to do anything to manipulate these equations in order to eliminate one of the unknowns. \n" ); document.write( "subtracting the top equation from the bottom equation yields .1*d = 3.60. \n" ); document.write( "d must then = 36 because 36 * (.1) = 3.60. \n" ); document.write( "going back to the first equation, we have (.05)*n + (.1)*36 = 6.00 \n" ); document.write( "which becomes (.05)*n + 3.60 = 6.00 \n" ); document.write( "which becomes (.05)*n = 2.40 \n" ); document.write( "which becomes n = 2.40/.05 \n" ); document.write( "which becomes n = 48. \n" ); document.write( "so number of nickels is 48 and number of dimes is 36. \n" ); document.write( "plugging these numbers in the second equation we get \n" ); document.write( "(.05)*48 + (.2)*36 = 2.4 + 7.2 = 9.6 which confirms that the number of nickels is 48 and the number of dimes is 36. \n" ); document.write( "in the bottom equation, (.2)d is really (.1)*2*d where d is the original number of dimes and .01 is the value of each dime and 2 is because we doubled the number of dimes. \n" ); document.write( " |