Difficulty: Medium
Correct Answer: 640
Explanation:
Introduction / Context:
When product and HCF are known, we can parameterize the two numbers as multiples of the HCF with co-prime multipliers. This approach lets us enumerate all valid unordered pairs and then compute the requested sum over distinct values appearing in those pairs.
Given Data / Assumptions:
Concept / Approach:
Let a = 16x and b = 16y with HCF(x, y) = 1. Then 256xy = 7168 ⇒ xy = 7168 / 256. Factor the right-hand side, and list the coprime factor pairs (x, y). Each gives a valid unordered pair (a, b). Finally, add all distinct numbers obtained from these pairs.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments