Difficulty: Medium
Correct Answer: 85
Explanation:
Given data
Concept / Approach
Step-by-step calculation
gcd(551, 1073):1073 − 551 = 522551 − 522 = 29522 ÷ 29 = 18 remainder 0 ⇒ gcd = 29Thus b = 29a = 551 ÷ 29 = 19c = 1073 ÷ 29 = 37Sum = 19 + 29 + 37 = 85
Verification
Pairwise gcds: gcd(19,29)=1, gcd(29,37)=1, gcd(19,37)=1.
Common pitfalls
Final Answer
a + b + c = 85.
Discussion & Comments