I have 2 positive integers. The greatest number that can divide both these numbers is 10, while the smallest positive number that is divisible by both is 100.
What is the product of these 2 integers?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let x , y are the two numbers. We know that gcd ( x , y ) = 1 0 and lcm ( x , y ) = 1 0 0 . We will use one of the relationships between GCD and LCM: lcm ( x , y ) x y = gcd ( x , y ) . From that we get 1 0 0 x y = 1 0 , so x y = 1 0 ∗ 1 0 0 = 1 0 0 0 .
We can check the solution with x = 2 0 and y = 5 0 .