- 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
Determine the smallest 3-digit number which is exactly divisible by 6,8 and 12.
Given :
The given numbers are 6, 8, 12.
To do :
We have to find the smallest three digit number which is divisible by 6, 8, 12.
Solution :
The smallest 3-digit which is exactly divisible by 6,8 and 12 will be a multiple of LCM of 6,8 and 12.
LCM of 6,8 and 12 is,
$6 = 2\times3$
$8 = 2\times2\times2$
$12 = 2\times2\times3$
$LCM = 2\times2\times2\times3 = 24$
Multiples of 24 are 24, $24\times2=48,......., 24\times5=120,.....$
Therefore, the smallest 3-digit which is exactly divisible by 6, 8 and 12 is 120.
Advertisements