- 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 those integers from 1 to 500 which are multiples of 2 or 5.
Given:
To do:
We have to find the sum of all
Solution:
Sum of integers that are multiples of 2 or 5 $=$ Sum of the multiples of 2 $+$ Sum of multiples of 5 which are not divisible by 2.
Numbers divisible by 2 from 1 to 500 are $2, 4, ......,500$
This series is in A.P.
Here,
First term $a=2$
Common difference $d=4-2=2$
Last term $a_n=500$
We know that,
$a_n=a+(n-1)d$
$500=2+(n-1)2$
$500-2=(n-1)2$
$498=(n-1)2$
$249=n-1$
$n=249+1$
$n=250$
We know that,
$\mathrm{S}_{n}=\frac{n}{2}[2 a+(n-1) d]$
$=\frac{250}{2}[2 \times 2+(250-1) \times 2]$
$=125[4+249 \times 2]$
$=125(4+498)$
$=125 \times 502$
$=62750$
Numbers divisible by 5 from 1 to 500 which are not divisible by 2 are $5, 15, ......,495$
This series is in A.P.
Here,
First term $a=5$
Common difference $d=15-5=10$
Last term $a_n=495$
We know that,
$a_n=a+(n-1)d$
$495=5+(n-1)10$
$495-5=(n-1)10$
$490=(n-1)10$
$49=n-1$
$n=49+1$
$n=50$
We know that,
$\mathrm{S}_{n}=\frac{n}{2}[2 a+(n-1) d]$
$=\frac{50}{2}[2 \times 5+(50-1) \times 10]$
$=25[10+49 \times 10]$
$=25(500)$
$=12500$
The sum of all integers from 1 to 500 which are multiples of 2 or 5 is $75250$.
- Related Articles
- Find the sum of those integers from 1 to 500 which are multiples of 2 as well as of 5.
- Find the sum of those integers between 1 and 500 which are multiples of 2 as well as of \( 5 . \)
- Find the sum of all integers from 1 to 500 which are multiplies of 2 or 5.
- Find the sum of all integers from 1 to 500 which are multiplies 2 as well as of 5.
- Find the sum of all integers between 1 and 500 which are multiplies of 2 as well as of 5.
- Find the sum of all integers between 84 and 719, which are multiples of 5.
- Find the sum of all integers between 50 and 500, which are divisible by 7.
- Find Multiples of 2 or 3 or 5 less than or equal to N in C++
- Find the sum of all 3-digit natural numbers, which are multiples of 11.
- Find the sum of first seven numbers which are multiples of 2 as well as of 9 .[Hint: Take the LCM of 2 and 9]
- The sum of three consecutive multiples of 7 is 63. Find multiples.
- The sum of three consecutive multiples of 2 is 18. Find the numbers.
- Find the sum: \( \frac{1}{5}+\frac{2}{5} \).
- The sum of three consecutive multiples of 8 is 888. Find the multiples.
- Which of the following is greater?$\frac{-1}{5}$ or $\frac{-1}{2}$
