document.write( "Question 311476: Find 3 consecutive even numbers where the product of the smaller two numbers is 52 less than the square of the largest number. \n" ); document.write( "
Algebra.Com's Answer #222797 by mananth(16946)![]() ![]() You can put this solution on YOUR website! let the consequtive even numbers be x,x+2 , x+4\r \n" ); document.write( "\n" ); document.write( "Product of smaller two = x(x+2) \n" ); document.write( ". \n" ); document.write( "square of the largest = (x+4)^2 \n" ); document.write( ". \n" ); document.write( "x(x+2)=(x+4)^2 -52 \n" ); document.write( "x^2+2x= x^2+8x+16-52 \n" ); document.write( "6x=36 \n" ); document.write( "x= 6\r \n" ); document.write( "\n" ); document.write( "The numbers are 6,8,10 \n" ); document.write( " |