document.write( "Question 270610: Find the sum of the first 100 even positive integers? \n" ); document.write( "
Algebra.Com's Answer #198232 by rfadrogane(214)![]() ![]() You can put this solution on YOUR website! This problem is a arithmetic progression: \n" ); document.write( " n = 100 -- the number of entry \n" ); document.write( " a1 = 2 (since even, so it will start with 2)--this our 1st element \n" ); document.write( " d = 2 (the common difference), remember that the difference of the succeeding even is 2 \n" ); document.write( " \r \n" ); document.write( "\n" ); document.write( "S = n[ a1 + (n-1)d]/2 \n" ); document.write( " = 100[2 + (100-1)(2)]/2 \n" ); document.write( "S = 10,000 \n" ); document.write( " |