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:
Check each option quickly for both properties.66, 78 ⇒ difference 12 but gcd(66, 78) = 6, not 12.70, 82 ⇒ difference 12 but gcd = 2, not 12.94, 106 ⇒ difference 12 but gcd = 2, not 12.84, 96 ⇒ difference 12 and gcd(84, 96) = 12 (since 84 = 12*7, 96 = 12*8 and gcd(7,8)=1).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