document.write( "Question 726517: find 3 consecutive odd integers such that the product of the first and third ones is 7 more than 10 times the middle one \n" ); document.write( "
| Algebra.Com's Answer #806418 by CubeyThePenguin(3113)     You can put this solution on YOUR website! consecutive odd integers: (x-2), x, (x+2)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "(x-2)(x+2) = 7 + 10x \n" ); document.write( "x^2 - 4 = 7 + 10x \n" ); document.write( "x^2 - 10x - 11 = 0 \n" ); document.write( "(x - 11)(x + 1) = 0\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "x = 11, x = -1\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "sets of integers: (9, 11, 13), (-1, 1, 3) \n" ); document.write( " |