- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find the sum of all integers between 1 and 500 which are multiplies of 2 as well as of 5.
Given:
To do:
We have to find the sum of all
Solution:
Numbers that are multiples of 2 as well as 5 are the multiples of LCM of 2 and 5.
LCM of 2 and 5 $=2\times5=10$
Numbers divisible by 10 are $10, 20,....., 100, 110,....., 990, 1000,......$
Numbers divisible by 2 and 5 between 1 and 500 are $10, 20, ......,490$
This series is in A.P.
Here,
First term $a=10$
Common difference $d=10$
Last term $a_n=490$
We know that,
$a_n=a+(n-1)d$
$490=10+(n-1)10$
$490-10=(n-1)10$
$480=(n-1)10$
$48=n-1$
$n=48+1$
$n=49$
We know that,
$\mathrm{S}_{n}=\frac{n}{2}[2 a+(n-1) d]$
$=\frac{49}{2}[2 \times 10+(49-1) \times 10]$
$=\frac{49}{2}[20+48 \times 10]$
$=\frac{49}{2}(20+480)$
$=49 \times 250$
$=12250$
The sum of all integers between 1 and 500 which are multiples of 2 as well as 5 is $12250$.