document.write( "Question 601352: Find a nice simple formula for finding what sum is for ANY value n. Explain why it works.\r
\n" );
document.write( "\n" );
document.write( "2+4+6+8+...+2n=?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #379876 by richard1234(7193)![]() ![]() You can put this solution on YOUR website! 2+4+6+...+2n = n(n+1). You can prove it by induction. Or you can use the \"Gauss-style\" method of adding that expression to itself, i.e.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "S = 2 + 4 + 6 +...+ 2n \n" ); document.write( "S = 2n+ ... + 2 \n" ); document.write( "---------------------- \n" ); document.write( "2S = (2n+2) + (2n+2) + ... + (2n+2) = (2n+2)(n)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "S = n(n+1) \n" ); document.write( " |