document.write( "Question 961459: Find four consecutive positive integers such that the product of the first two is greater than the product of 3 and the fourth. \n" ); document.write( "
| Algebra.Com's Answer #805550 by CubeyThePenguin(3113)     You can put this solution on YOUR website! consecutive positive integers: x, (x+1), (x+2), (x+3)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "(x)(x+1) > (x+2)(x+3) \n" ); document.write( "x^2 + x > x^2 + 5x + 6 \n" ); document.write( "x > 5x + 6 \n" ); document.write( "0 > 4x + 6 \n" ); document.write( "4x + 6 < 0 \n" ); document.write( "4x < 6 \n" ); document.write( "x < 6/4 = 1.5\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "x has to be 1. \n" ); document.write( " |