I believe these sort of questions can be handled without remembering the formula : X*Y = LCM (X, Y) * GCF (X,Y)
Let's see how,
Statement 1 : The greatest common divisor of x and y is 10 What this essentially means is that we have two numbers x and y, that can be written in the following way :
x = 2*5*A
y = 2*5*B , where A and B are co-primes. (If they had any common factor, it would've been considered in the GCF)
Now, x*y = 2*5*2*5*A*B => Now in order for x*y to be a factor of 8, we need at least one more 2 in either A or B; A condition can cannot be guaranteed just with the statement 1. Hence, insufficient.
Statement 2 : The least common multiple of x and y is 100Statement 2 alone is not sufficient. Consider the below 2 examples :
Let x = 1 and y = 100. LCM (x,y) = 100 and x*y = 100 (not a multiple of 8)
Let x = 2 and y = 2*2*5*5. LCM (x,y) = 100 and x*y = 200 (multiple of 8)
Hence, statement 2 alone is not sufficient.
Now, considering statement 1 and 2 together :
Statement 1 : The greatest common divisor of x and y is 10
x = 2*5*A
y = 2*5*B , where A and B are co-primes.
Statement 2 : The least common multiple of x and y is 100
LCM (x,y) = 2*5 *A*B = 100
=> A*B = 10
=> The only combination possible is 1*10 since A and B are co-primes.
Now , x*y = 2*5*2*5*2*5 (Always a multiple of 8).
Option C is the correct answer.
Would like to know your thoughts on using this approach while solving similar problems.