document.write( "Question 158590This question is from textbook
\n" );
document.write( ": FIND TWO CONSECUITE EVEN INTEGERS SUCH THAT TWICE THE SMALLER IS 10 MORE THEN THE LARGER \n" );
document.write( "
Algebra.Com's Answer #116827 by gonzo(654)![]() ![]() ![]() You can put this solution on YOUR website! let s = smaller even integer \n" ); document.write( "let l = larger even integer \n" ); document.write( "requirement states that 2 * s = l + 10 \n" ); document.write( "solving for l, we get l = 2*s -10 \n" ); document.write( "for any s, we should be able to calculate an l that meets the requirements. \n" ); document.write( "for example we can take s = -4 \n" ); document.write( "then l = 2*(-4)-10. \n" ); document.write( "making l = -18. \n" ); document.write( "2 * (-4) = -8 \n" ); document.write( "-18 + 10 = -8 \n" ); document.write( "requirement is met. \n" ); document.write( "works for positive even integers as well. \n" ); document.write( "take s = 54 \n" ); document.write( "l = 2*54-10 = 108-10 = 98 \n" ); document.write( "2*54 = 108 \n" ); document.write( "98+10 = 108 \n" ); document.write( "as long as s is an even integer, l will be an even integer as well. \n" ); document.write( " \n" ); document.write( " |