document.write( "Question 325566: find 3 consecutive odd numbers where the product of the smaller two numbers is 34 less than the squareof the largest number \n" ); document.write( "
Algebra.Com's Answer #233106 by mananth(16946)![]() ![]() You can put this solution on YOUR website! let the numbers be x, x+2, x+4\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "x(x+2)=(x+4)^2-34 \n" ); document.write( "x^2+2x=X^2+8x+16-34 \n" ); document.write( "x^2+2x-x^2-8x=-18 \n" ); document.write( "-6x=-18 \n" ); document.write( "x=3 \n" ); document.write( "the numbers are 3, 5, 7 \n" ); document.write( " |