- 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 odd numbers between 100 and 200.
Given:
To do:
We have to find the sum of all
Solution:
Odd numbers between 100 and 200 are \( 101,103,105,107, \ldots, 199 \).
The sequence is in A.P.
Here,
\( a=101 \) and \( d=103-101=2 \) \( l=199 \)
We know that,
$l=a+(n-1) d$
$\Rightarrow 199=101+(n-1) \times 2$
$\Rightarrow 199=101+2 n-2$
$\Rightarrow 199-99=2 n$
$\Rightarrow n=\frac{100}{2}=50$
$\therefore n=50$
We know that,
$\mathrm{S}_{n}=\frac{n}{2}[2 a+(n-1) d]$
$=\frac{50}{2}[2 \times 101+(50-1) \times 2]$
$=25[202+49 \times 2]$
$=25(202+98)$
$=25 \times 300$
$=7500$
The sum of all odd numbers between 100 and 200 is $7500$.
- Related Articles
- Find the sum of all odd numbers between 0 and 50.
- Find the sum of all the numbers from 1 to 200.
- Find the sum of the odd numbers between 0 and 50.
- Find the sum of the integers between 100 and 200 that are divisible by 9
- Find the sum of all natural numbers between 1 and 100, which are divisible by 3.
- Find the sum of the integers between 100 and 200 that are not divisible by 9
- Find the sum of all natural numbers that are less than 100 and divisible by 4.
- Python Program to Find All Numbers which are Odd and Palindromes Between a Range of Numbers
- Find the sum of all integers between 100 and 550, which are divisible by 9.
- Find the sum of first $n$ odd natural numbers.
- 8.(i) Express 49 as the sum of 7 odd numbers.(ii) Express 121 as the sum of 11 odd numbers.9. How many numbers lie between squares of the following numbers?(i) 12 and 13(ii) 25 and 26(iii) 99 and 100"\n
- Find the sum of all integers between 100 and 550 which are not divisible by 9.
- Java Program to Find Sum of First N Odd numbers and Even numbers
- Write the cubes of all natural numbers between 1 and 10 and verify the following statements:(i) Cubes of all odd natural numbers are odd.(ii) Cubes of all even natural numbers are even.
- Swift Program to calculate the sum of all odd numbers up to N

Advertisements