Difficulty: Medium
Correct Answer: 36-72
Explanation:
Introduction / Context:
Pair-classification items often hide a simple arithmetic mapping from the first member to the second. Here we test for the doubling rule b = 2a. The skill is to check each option consistently and spot the single conforming (or non-conforming) case.
Given Data / Assumptions:
Concept / Approach:
Compute 2a and compare to b in each pair. If exactly one pair matches, that pair is the odd one out relative to the rest (which do not match).
Step-by-Step Solution:
For 12–28: 2 * 12 = 24 ≠ 28 → no.For 14–82: 2 * 14 = 28 ≠ 82 → no.For 23–64: 2 * 23 = 46 ≠ 64 → no.For 36–72: 2 * 36 = 72 → yes (unique).
Verification / Alternative check:
If you try other plausible mappings (sum of digits, product, etc.), none yields a unique consistent rule across three choices. The clean doubling property isolates only 36–72.
Why Other Options Are Wrong:
Common Pitfalls:
Overfitting a complicated mapping to force matches on multiple pairs. The test favors a simple, uniquely identifying rule.
Final Answer:
36-72
Discussion & Comments