document.write( "Question 511607: Find a pair of numbers with a sum of 26 and a product that is a maximum. Find the maximum product. \n" ); document.write( "
Algebra.Com's Answer #342294 by oberobic(2304)![]() ![]() ![]() You can put this solution on YOUR website! x + y = 26 \n" ); document.write( "so \n" ); document.write( "x = 26-y \n" ); document.write( ". \n" ); document.write( "The product is \n" ); document.write( "z = x * y = (26-y) * y \n" ); document.write( ". \n" ); document.write( "z = 26y -y^2 \n" ); document.write( ". \n" ); document.write( "To find the maximum, take the first derivative and solve it. \n" ); document.write( ". \n" ); document.write( "dz/dy = 26 - 2y \n" ); document.write( ". \n" ); document.write( "26-2y = 0 \n" ); document.write( "26 = 2y \n" ); document.write( "y = 13 \n" ); document.write( ". \n" ); document.write( "Check: \n" ); document.write( "
\n" ); document.write( ". \n" ); document.write( "Answer: The pair of numbers are 13 and 13 that total 26 and maximizes the product. \n" ); document.write( ". \n" ); document.write( "Done. \n" ); document.write( " |