This is a classic GCD properties question that tests whether you understand what "greatest common divisor" really means. Let's work through it using a concrete example - this will make everything crystal clear.
Let's Use Smart NumbersSince we need \(x > y\) and \(d = GCD(x,y)\), let me choose:
- \(x = 18\)
- \(y = 12\)
- \(d = 6\) (which is indeed the GCD of 18 and 12)
Now let's test each option:
Option I: d and xWhat's \(GCD(6, 18)\)?
Well, 6 divides both 6 and 18. In fact, since 6 divides 18, the greatest common divisor of 6 and 18 is simply 6 itself.
So \(GCD(d, x) = d\) ✓
Option II: y and xyWhat's \(GCD(12, 12 \times 18)\)? That's \(GCD(12, 216)\).
Here's the key insight: since \(216 = 12 \times 18\), we know that 12 divides 216 evenly. In fact, \(y\) always divides \(xy\) because \(xy = x \times y\).
This means \(GCD(y, xy) = y\) itself, not \(d\).
So \(GCD(12, 216) = 12\), which is \(y\), not \(d = 6\) ✗
Option III: y and x-yWhat's \(GCD(12, 18-12)\)? That's \(GCD(12, 6)\).
Since 6 divides 12 evenly (\(12 = 2 \times 6\)), the GCD of 12 and 6 is simply 6.
So \(GCD(y, x-y) = 6 = d\) ✓
Why Does Option III Work?Notice that if \(d\) divides both \(x\) and \(y\), then \(d\) must also divide their difference \((x-y)\). This is because we can write \(x = d \times m\) and \(y = d \times n\) for some integers \(m\) and \(n\), which means \(x - y = d(m-n)\).
But here's what makes this special: there's a fundamental GCD property that states \(GCD(a, b) = GCD(b, a-b)\). The greatest common divisor stays the same when you replace one number with their difference.
Answer: (E) I and III onlyWant to Master GCD Problems?I've shown you the smart numbers approach here, but there's much more to learn. The
complete solution on Neuron by e-GMAT includes the systematic framework for identifying GCD properties quickly, common traps students fall into (like confusing "common divisor" with "greatest common divisor"), and alternative solution methods. You'll also learn the general algebraic approach that doesn't require smart numbers at all. Plus, you can practice with
detailed solutions for hundreds of other official questions on Neuron to build pattern recognition across all GMAT quant topics.
Hope this helps you see the logic behind GCD problems!