Find the sum of integers which are divisible by 5 from 1 to 100
Open in App
Solution
Numbers divisible by 5 are 5,10,15,20,25.........100. Now, we have to find the sum of these numbers ⇒5+10+15+20..............+100 can be written as ⇒5(1+2+3+....................+20) Using the formula, sum of first n numbers =n(n+1)2 =5(20(21)2)
=5×210=1050
Therefore, sum of integers which are divisible by 5 from 1 to 100 is 1050.