- 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 the integers between 100 and 200 that are divisible by 9
To do:
We have to find the sum of all
(i) divisible by 9
(ii) not divisible by 9
Solution:
(i) Integers between 100 and 200, that are divisible by 9 are \( 108,117,126, \ldots, 198 \).
The sequence is in A.P.
Here,
\( a=108 \) and \( d=117-108=9 \)
\( l=198 \)
We know that,
$l=a+(n-1) d$
$\Rightarrow 198=108+(n-1) \times 9$
$\Rightarrow 198=108+9n-9$
$\Rightarrow 198-99=9 n$
$\Rightarrow n=\frac{99}{9}=11$
Therefore,
$n=11$
$\mathrm{S}_{n}=\frac{n}{2}[2 a+(n-1) d]$
$S_{11}=\frac{11}{2}[2 \times 108+(11-1) \times 9]$
$=\frac{11}{2}[216+10 \times 9]$
$=11(108+45)$
$=11 \times 153$
$=1683$
The sum of all integers between 100 and 200 that are divisible by 9 is $1683$.
(ii) Sum of the integers between 100 and 200, which are not divisible by 9 $=$ Sum of the integers between 100 and 200 $-$ Sum of the integers between 100 and 200, which are divisible by 9
Integers between 100 and 200 are \( 101,102,103, \ldots, 199 \).
The sequence is in A.P.
Here,
\( a=101 \) and \( d=102-101=1 \) \( l=199 \)
We know that,
$l=a+(n-1) d$
$\Rightarrow 199=101+(n-1) \times 1$
$\Rightarrow 199=101+n-1$
$\Rightarrow 199-100=n$
$\Rightarrow n=99$
$\mathrm{S}_{n}=\frac{n}{2}[2 a+(n-1) d]$
$=\frac{99}{2}[2 \times 101+(99-1) \times 1]$
$=\frac{99}{2}[202+98 \times 1]$
$=\frac{99}{2}(202+98)$
$=99 \times 150$
$=14850$
From (i)
The sum of all integers between 100 and 200 that are divisible by 9 is $1683$.
Therefore,
Sum of all
$=13167$
The sum of all integers between 100 and 200 which are not divisible by 9 is $13167$.
- Related Articles
- Find the sum of the integers between 100 and 200 that are not divisible by 9
- Find the sum of all integers between 100 and 550, which are divisible by 9.
- Find the sum of all integers between 100 and 550 which are not divisible by 9.
- Find the sum of all integers between 50 and 500, which are divisible by 7.
- Find the sum of all natural numbers that are less than 100 and divisible by 4.
- Find the sum of all natural numbers between 1 and 100, which are divisible by 3.
- Find the sum of all odd numbers between 100 and 200.
- Show that the sum of all odd integers between 1 and 1000 which are divisible by 3 is 83667.
- Find the number of numbers which are divisible by $7$ between $100$ and $1000$.
- Find the sum of the first 40 positive integers divisible by 6.
- An integer is chosen between $70$ and $100$. Find the probability that it is divisible by $7$.
- An integer is chosen at random between 1 and 100. Find the probability that it is :$ ( i)$ divisible by 8 $( ii) $not divisible by 8
- Find the sum of the first 40 positive integers divisible by (a) 3 (b) 5 (c) 6.
- Find the sum of all integers between 84 and 719, which are multiples of 5.
- Find the sum of all even integers between 101 and 999.
