document.write( "Question 1067268: Suppose you have 16 coins that equal at least $2.20. Some coins are quarters and some are nickels. What is the greatest amount of nickels you can have? \n" ); document.write( "
Algebra.Com's Answer #682476 by swincher4391(1107)\"\" \"About 
You can put this solution on YOUR website!
Let n = number of nickels, q = number of quarters.\r
\n" ); document.write( "\n" ); document.write( "Then we have n+q =16 and .05n+.25q >= 2.20\r
\n" ); document.write( "\n" ); document.write( "Notice that we have two other constraints. 0<=n=<16 and 0<=q<=16\r
\n" ); document.write( "\n" ); document.write( "So the solution that gives us exactly 16 coins and exactly 2.20 would be set by\r
\n" ); document.write( "\n" ); document.write( "n+q=16 and .05n+.25q=2.20\r
\n" ); document.write( "\n" ); document.write( "q=16-n by solving the 1st equation for q.\r
\n" ); document.write( "\n" ); document.write( ".05n + .25(16-n) = 2.20\r
\n" ); document.write( "\n" ); document.write( ".05n + 4 - .25n = 2.20\r
\n" ); document.write( "\n" ); document.write( ".2n = 1.80\r
\n" ); document.write( "\n" ); document.write( "n = 9 (so q = 7)\r
\n" ); document.write( "\n" ); document.write( "So n is at least 9.\r
\n" ); document.write( "\n" ); document.write( "Now, the question is what is the greatest?\r
\n" ); document.write( "\n" ); document.write( "We can logically say that for every nickel I add, I have to subtract a quarter (meaning the net amount of money is decreased by 20 cents).\r
\n" ); document.write( "\n" ); document.write( "So for instance if n = 10, then q = 6, so we have .5 + 1.50 = 2.00 (which isn't at least 2.20). \r
\n" ); document.write( "\n" ); document.write( "Now we can have n=8 and we will go to 2.40, but that's not the \"maximum\" number of nickels.\r
\n" ); document.write( "\n" ); document.write( "So, the maximum number of nickels is 9.\r
\n" ); document.write( "\n" ); document.write( "I'll attempt to graph what is going on.\r
\n" ); document.write( "\n" ); document.write( "\"graph%28500%2C500%2C0%2C16%2C0%2C16%2Cy=16-x%2Cy%3E=8.8-.2x%29\"\r
\n" ); document.write( "\n" ); document.write( "This is using q = 16-n
\n" ); document.write( "and q >= 8.8-.2n
\n" ); document.write( "Notice that the intersection of the graphs for (n,q) is (9,7)
\n" ); document.write( "
\n" );