document.write( "Question 380951: find four consecutive odd integers whose sum is 8 using an equation
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #270310 by robertb(5830) You can put this solution on YOUR website! let x = least valued odd integer in the list. Then \n" ); document.write( "x+x+2+x+4+x+6 = 8; \n" ); document.write( "4x + 12 = 8; \n" ); document.write( "4x = -4; \n" ); document.write( "x = -1. \n" ); document.write( "Therefore the four consecutive odd integers are -1, 1, 3, 5. \n" ); document.write( " |