Find two consecutive even integers such that the square of the second,
\n" );
document.write( "decreased by twice the first, is 52.
\n" );
document.write( "Let the smaller even integer be N. Then the next consecutive even
\n" );
document.write( "integer to N is N+2
\n" );
document.write( ">>...the square of the second, decreased by twice the first, is 52...<<
\n" );
document.write( "Translation: (N + 2)2 - 2N = 52
\n" );
document.write( " (N + 2)2 - 2N = 52
\n" );
document.write( " N2 + 4N + 4 = 2N + 52
\n" );
document.write( " N2 + 2N - 48 = 0
\n" );
document.write( " (N + 8)(N - 6) = 0
\n" );
document.write( " N + 8 = 0, so N = -8
\n" );
document.write( " N - 6 = 0, so N = 6
\n" );
document.write( "So the integers, N and N+2, are either -8 amd -6, or 6 and 8
\n" );
document.write( "Edwin
\n" );
document.write( "
\n" );
document.write( "