document.write( "Question 1090161: What is the minimum product of two numbers whose difference is 32? What are the numbers?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #704563 by htmentor(1343)![]() ![]() You can put this solution on YOUR website! Let the two numbers be x and y. \n" ); document.write( "Their difference is 32, so y - x = 32 -> y = 32 + x \n" ); document.write( "We want to minimize the product xy: \n" ); document.write( "P = xy = x(32+x) = x^2 + 32x \n" ); document.write( "P will be a minimum when the derivative is equal to zero. \n" ); document.write( "dP/dx = 0 = 2x + 32, or x = -16 \n" ); document.write( "Thus y = 32 - 16 = 16 \n" ); document.write( "So the two numbers are 16 and -16 and the minimum product is -16*16 = -256 \n" ); document.write( " \n" ); document.write( " |