Bunuel
Official Solution:
If \(a\) and \(b\) are positive integers, what is the greatest common divisor of \(a\) and \(b\)?
It's important to note that two statements together are obviously sufficient to answer the question. When encountering such a question, be extremely cautious when choosing C as an answer. There's a high likelihood that the question is a "C trap" question ("C trap" refers to a problem that is VERY OBVIOUSLY sufficient if both statements are taken together).
(1) \(a + 3b = 61\).
Let the greatest common divisor of \(a\) and \(b\) be \(d\), then \(a=md\) and \(b=nd\), for some positive integers \(m\) and \(n\). So, we'll have \((md)+3(nd)=d(m+3n)=61\). Now, since 61 is a prime number (61=1*61), then \(d=1\) and \(m+3n=61\) (vice versa is not possible because \(m\) and \(n\) are positive integers and therefore \(m+3n\) cannot equal 1). Hence we have that the \(GCD(x, y)=d=1\). Sufficient.
(2) \(5a - b = 1\). Rearrange: \(5a=b+1\).
\(5a\) and \(b\) 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 the only common factor they share is 1). So, \(5a\) and \(b\) don't share any common factor but 1, thus \(a\) and \(b\) also don't share any common factor but 1. Hence, the \(GCD(x, y)\) is 1. Sufficient.
Answer: D
Hi
Bunuel, 5a, b are co-prime, but how did we come to this " a, b are coprime too"? This is the logic right used right ?, Eg- 4a,b are coprime then a,b are coprime too, but if a,b are coprime then 4a,b can be or can't be prime(will depend upon a,b)
.
To answer your other question: yes, if 4a and b are co-prime, then a and b must also be co-prime. After all, if a and b had a common factor greater than 1, then 4a and b would inevitably share that factor as well. Conversely, just because a and b are co-prime, it doesn't necessarily mean that 4a and b are co-prime. For example, consider a = 3 and b = 2.
I hope this helps.