- 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 2-digit natural numbers divisible by 4.
Given:
2-digit natural numbers divisible by 4.
To do:
We have to find the sum of all 2-digit natural numbers divisible by 4.
Solution:
Two digits natural numbers which are divisible by 4 are \( 12,16,20, \ldots, 96 \).
The sequence is in A.P.
Here,
\( a=12 \) and \( d=4 \) \( l=96 \)
We know that,
$l=a+(n-1) d$
$\Rightarrow 96=12+(n-1) \times 4$
$\Rightarrow 96=12+4 n-4$
$\Rightarrow 96=8+4 n$
$\Rightarrow 4 n=96-8$
$\Rightarrow n=\frac{88}{4}=22$
$\therefore n=22$
$\mathrm{S}_{n}=\frac{n}{2}[2 a+(n-1) d]$
$=\frac{22}{2}[2 \times 12+(22-1) \times 4]$
\( =11[24+21 \times 4] \)
\( =11[24+84] \)
\( =11 \times 108 \)
\( =1188 \)
The sum of all 2-digit natural numbers divisible by 4 is $1188$.
- Related Articles
- Find the sum of all 3-digit natural numbers which are divisible by 13.
- Find the number of all three digit natural numbers which are divisible by 9.
- 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 3-digit natural numbers, which are multiples of 11.
- How many three digit natural numbers are divisible by 7?
- Finding all the n digit numbers that have sum of even and odd positioned digits divisible by given numbers - JavaScript
- Sum of first N natural numbers which are divisible by 2 and 7 in C++
- Find the largest 4 digit number divisible by 16.
- Find the total two-digit numbers which are divisible by $5$.
- Sum of first N natural numbers which are divisible by X or Y
- Find how many two-digit numbers are divisible by 6.
- Count of N-digit Numbers having Sum of even and odd positioned digits divisible by given numbers - JavaScript
- Find the number of natural numbers between 101 and 999 which are divisible by both 2 and 5.
- Check if product of first N natural numbers is divisible by their sum in Python

Advertisements