document.write( "Question 666237: what is the sum of the first 1000 consecutive whole numbers? \n" ); document.write( "
Algebra.Com's Answer #414348 by swincher4391(1107) You can put this solution on YOUR website! In general, the sum of the first n numbers is n(n+1)/2. Then 1000(1000+1)/2 = 500*1001 = 500500.\r \n" ); document.write( "\n" ); document.write( "If you don't believe the result, here's a nice proof:\r \n" ); document.write( "\n" ); document.write( "Let S be the sum of the first n numbers.\r \n" ); document.write( "\n" ); document.write( "S = 1+2+3+...+n \r \n" ); document.write( "\n" ); document.write( "Also, notice that we can use the commutative property to write S in a different way.\r \n" ); document.write( "\n" ); document.write( "S = n+n-1+n-2+n-3+...+1\r \n" ); document.write( "\n" ); document.write( "If we add these two equations we get\r \n" ); document.write( "\n" ); document.write( "2S = n+1 + n+1 + n+1 +...+ n+1\r \n" ); document.write( "\n" ); document.write( "How many times do we get n+1? n times.\r \n" ); document.write( "\n" ); document.write( "2S = n*(n+1)\r \n" ); document.write( "\n" ); document.write( "S = n*(n+1)/2 :)\r \n" ); document.write( "\n" ); document.write( "So, this form will work for any sum 1 to #whatever. \n" ); document.write( " |