Difficulty: Easy
Correct Answer: (56, 19)
Explanation:
Introduction / Context:
Pair classification frequently tests a simple relation between the two components, such as multiplication/division by a constant. We examine whether the second element is a consistent function of the first (e.g., first/3).
Given Data / Assumptions:
Concept / Approach:
Test whether the second equals the first divided by 3. If three pairs satisfy x2 = x1 / 3 exactly and one does not, that one is the outlier.
Step-by-Step Solution:
108 / 3 = 36 → matches (108, 36).69 / 3 = 23 → matches (69, 23).42 / 3 = 14 → matches (42, 14).56 / 3 = 18.666… ≠ 19 → breaks the rule.
Verification / Alternative check:
Try other simple linear rules (e.g., subtracting a constant). None will fit three pairs simultaneously as cleanly as division by 3, confirming (56, 19) as the unique mismatch.
Why Other Options Are Wrong:
Common Pitfalls:
Rounding 56/3 to 19 is not allowed; these puzzles expect exact integer relationships, not approximations.
Final Answer:
(56, 19)
Discussion & Comments