document.write( "Question 1031151: Choose 3 consecutive integers. Square the middle integer, then multiply the other 2 integers. Subtract the product from the squared number. The answer is 1. Why does this work? Is there an equation for this?
\n" );
document.write( "2, 3, 4
\n" );
document.write( "9-8 = 1
\n" );
document.write( "Thank you \n" );
document.write( "
Algebra.Com's Answer #645876 by LinnW(1048) You can put this solution on YOUR website! set x = the first integer \n" ); document.write( "x + 1 = the second integer \n" ); document.write( "x + 2 = the third integer \n" ); document.write( "Below we see squaring the middle then subtracting the product of the other two \n" ); document.write( "(x + 1)^2 - x(x + 2) ?= 1 \n" ); document.write( "x^2 + 2x + 1 - ( x^2 + 2x ) \n" ); document.write( "x^2 + 2x + 1 - x^2 - 2x \n" ); document.write( "Simplifying we have 1 \n" ); document.write( "Does this help? \n" ); document.write( "The above works for any 3 consecutive integers. \n" ); document.write( " \n" ); document.write( " |