- 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 least number which is exactly divisible by 10, 15, 20 and also a perfect square.
Given: 10, 15, 20
To find: We have to find the least number which is exactly divisible by 10, 15, 20 and also a perfect square.
Solution:
First we need to find the LCM of the given numbers i.e. 10, 15 and 20.
Now,
Writing all the numbers as a product of their prime factors:
Prime factorization of 10:
- 2 $\times $ 5 = 21 $\times $ 51
Prime factorization of 15:
- 3 $\times $ 5 = 31 $\times $ 51
Prime factorization of 20:
- 2 $\times $ 2 $\times $ 5 = 22 $\times $ 51
Highest power of each prime number:
- 22 , 31 , 51
Multiplying these values together:
22 $\times $ 31 $\times $ 51 = 60
Thus,
LCM(10, 15, 20) = 60
We know that in a perfect square all the prime factors of that number are in pairs. So, we need to multiply 60 with 3 and 5 to make it a perfect square.
60 $\times $ 3 $\times $ 5 = 900
So, the least number which is exactly divisible by 10, 15, 20 and also a perfect square is 900.
- Related Articles
- Find the least square number which is exactly divisible by 8, 9 and 10
- What is the least square number which is exactly divisible by each of these numbers 6, 9, 15, and 20?
- Find the least square number, exactly divisible by each one of the numbers:(i) 6, 9, 15 and 20(ii) 8, 12, 15 and 20.
- Find the least number divisible by 15, 20, 24, 32, and 36.
- Find the least number with four digits which is a perfect square
- Find the least number of four digits which is a perfect square.
- Find the least number of six-digits which is a perfect square.
- Find the least number of three digits which is perfect square.
- Find the least number of 5 digit that is exactly divisible by 16,18,24 and 30
- Find the least $6$ digit which is a perfect square.
- Find the least number by which 8 must be multiplied to make it a perfect square.
- Find the least number by which 45 must be divided to make it a perfect square.
- Find the greatest 3 digit number that is exactly divisible by 6 15 and 21
- Find the smallest number by which 396 must be divided to obtain a perfect square. Also find the square root of the perfect square so obtained.
- Find the smallest number by which 5103 can be divided to get a perfect square. Also find the square root of the perfect square so obtained.
