document.write( "Question 600102: Find three consecutive positive intergers such that the product of the first and second intergers is 26 less than the product of the second and third. \n" ); document.write( "
Algebra.Com's Answer #379192 by htmentor(1343)![]() ![]() You can put this solution on YOUR website! Let the integers be n, n+1 and n+2 \n" ); document.write( "Given: product of the 1st and 2nd is 26 less than the product of the 2nd and 3rd \n" ); document.write( "In equation form this is \n" ); document.write( "n(n+1) = (n+1)(n+2) - 26 \n" ); document.write( "Solve for n: \n" ); document.write( "n^2 + n = n^2 + 3n - 24 \n" ); document.write( "2n = 24 \n" ); document.write( "n = 12 \n" ); document.write( "Ans: 12, 13, 14 \n" ); document.write( " |