Difficulty: Easy
Correct Answer: 84, 96
Explanation:
Introduction / Context:
We are given two constraints for a pair of integers: their highest common factor (HCF) is 12, and their difference is 12. We must select the pair that meets both conditions at once.
Given Data / Assumptions:
Concept / Approach:
If HCF is 12, then each number is a multiple of 12. Let the numbers be 12m and 12n, with gcd(m, n) = 1 (since all common factors are captured by 12). The difference is |12m − 12n| = 12|m − n| and is given as 12 ⇒ |m − n| = 1, so m and n must be consecutive coprime integers.
Step-by-Step Solution:
Verification / Alternative check:
Factor 84 = 2^2*3*7 and 96 = 2^5*3; common prime factors have minimum exponents 2^2*3 = 12. Difference is 12. Both constraints satisfied.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
84, 96
Discussion & Comments