document.write( "Question 1102223: What is the sum of all natural numbers between 1 and 200 which are multiples of 5? \n" ); document.write( "
Algebra.Com's Answer #716866 by htmentor(1343)![]() ![]() You can put this solution on YOUR website! The multiples of 5 between 1 and 200 are 5, 10, 15, ..., 200 \n" ); document.write( "This forms an arithmetic sequence with first term equal to 5 and common difference equal to 5. \n" ); document.write( "The nth term is written a_n = 5 + (n-1)*5 = 5n \n" ); document.write( "The sum of the 1st n terms of an arithmetic sequence is S_n = (n/2)(a + a_n), \n" ); document.write( "where a = the 1st term \n" ); document.write( "The last term is 200, so n = 200/5 = 40 \n" ); document.write( "S_40 = 20*(5 + 200) = 4100 \n" ); document.write( " |