Difficulty: Easy
Correct Answer: 36 - 70
Explanation:
Introduction / Context:Arithmetic-mapping classification tasks often use linear relations. Here, the intended mapping is M = 2 * N (the second number is double the first). The odd pair violates this relation.
Given Data / Assumptions:
Concept / Approach:Compute 2 * N for each pair and compare with M. Any mismatch identifies the odd pair.
Step-by-Step Solution:
12–24: 2 * 12 = 24 → correct.14–28: 2 * 14 = 28 → correct.23–46: 2 * 23 = 46 → correct.36–70: 2 * 36 = 72, but M = 70 → violation.Verification / Alternative check:Compute M − 2N for each pair: 0, 0, 0, and −2 respectively. Non-zero difference confirms the mismatch in 36–70.
Why Other Options Are Wrong:They accurately represent doubling and so are not the odd item.
Common Pitfalls:Rounding or mental slips (e.g., mistaking 2 * 36 as 70). Always multiply exactly.
Final Answer:36 - 70 is the odd pair.
Discussion & Comments