document.write( "Question 853347: What is the rule for the sum of the first 'n' positive integers.\r
\n" );
document.write( "\n" );
document.write( "I.e. 1+2+3+4+5... \r
\n" );
document.write( "\n" );
document.write( "Could you please give the formula and explain the solution? \n" );
document.write( "
Algebra.Com's Answer #514068 by rothauserc(4718)![]() ![]() You can put this solution on YOUR website! the sum of the first n positive integers is given by the formula \n" ); document.write( "n(n+1) / 2 \n" ); document.write( "note that if n = 1, then \n" ); document.write( "1(1+1) / 2 = 2/2 = 1 \n" ); document.write( "now assume that the formula \n" ); document.write( "n(n+1) / 2 is true for n > 1 \n" ); document.write( "we need to show that \n" ); document.write( "sum of i where i =1, n+1 is (n+1)(n+2) / 2 \n" ); document.write( "pull n+1 out of the sum and we get \n" ); document.write( "sum of i where i =1, n+1 is n+1 + sum of i where i =1,n is (n+1)+ n(n+1)/2 \n" ); document.write( "factor out (n+1) and simplify \n" ); document.write( "(n+1) + n(n+1) / 2 = (n+1)(1+ n/2) = (n+1)(2+n)/2 = (n+1)(n+2) / 2 \n" ); document.write( "which proves the result \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " |