carcass
If x and y are positive integers, what is the greatest common divisor of x and y?
1) 2x + y = 73
2) 5x – 3y = 1
MMMMMMmm
Here I'm not sure that the answer is C because is true that we need of both statement to find possible values for X and Y. Infact statement 1 and 2 we do not have values for the variables (can be everything).
But it seems to be a trap answer......
If x and y are positive integers, what is the greatest common divisor of x and y?This is
a classic "C trap" question: "C trap" is a problem which is VERY OBVIOUSLY sufficient if both statements are taken together. When you see such question you should be extremely cautious when choosing C for an answer.
(1) \(2x+y=73\). Suppose GCD(x, y) is some integer \(d\), then \(x=md\) and \(y=nd\), for some positive integers \(m\) and \(n\). So, we'll have \(2(md)+(nd)=d(2m+n)=73\). Now, since 73 is a prime number (73=1*73) then \(d=1\) and \(2m+n=73\) (vice versa is not possible because \(m\) and \(n\) are positve integers and therefore \(2m+n\) cannot equal to 1). Hence we have that GCD(x, y)=d=1. Sufficient.
(2) \(5x-3y=1\) --> \(5x=3y+1\) --> \(5x\) and \(3y\) are consecutive integers. Two consecutive integers are co-prime, which means that they don't share ANY common factor but 1 (for example 20 and 21 are consecutive integers, thus only common factor they share is 1). So, \(5x\) and \(3y\) don't share any common factor but 1, thus \(x\) and \(y\) also don't share any common factor but 1. Hence, GCD(x, y) is 1. Sufficient.
Answer: D.
Hope it's clear.