kabirgandhi
Could anyone help explain this question? Since it is asking what "could be false", going about it by trying to take one example might not be the best strategy
One thing to note, is that I've never seen an official question ask "which of the following could be
false," so I'm not entirely confident on the quality of the source material. That said, the language of "could be" or "must be" is a signal for me that a question is all about Testing Cases (think process of elimination). In this case, if something COULD be false, it means that all of these answers will be true, but only one will have a situation where it might not actually hold. So we can't just test a single number - we have to test until we are able to finally break one (and show a case where it is false).
When Testing Cases, I usually start with the laziest / easiest / most restrictive option I can come up with, just to see the pattern (or to test limit or edge cases).
Case 1: They don't say that
a and
b have to be different, so let's say a = b = 2. The LCM of a and b would also be 2. Therefore,
ab/n = 2
(2)(2)/n = 2
n = 2
Now test the choices:
(A) 2 is a factor of both 2 and 2 - TRUE
(B) 2*2/2 < 2*2 - TRUE
(C) 2*2 is a multiple of 2 - TRUE
(D) 2*2/2 is a multiple of 2 - TRUE
(D) 2 is a multiple of 4 - FALSE
We hit a false on the first try and so we can stop here! If we had hit all true, we'd have to start to be more creative
Quote:
aryanxx09Why can't it be option c? Let a=3, b=7, n=1. LCM is 21, which is 3*7/1Can someone explain? The case you tested violates the initial premise that a and b are both
even integers. If we look at the theory of C, if both a and b are even, then they are both multiplies of 2. Their product is actually guaranteed to be a multiple of 4, so it will definitely be a multiple of 2!

Whit