Difficulty: Medium
Correct Answer: 14, 11, 13
Explanation:
Introduction / Context:
Arithmetic progressions (AP) are sequences where consecutive terms differ by a constant. Here, the intended AP has common difference 2 after arranging terms in ascending order. One triple fails to be an exact AP.
Given Data / Assumptions:
Concept / Approach:
Sort each triple and check whether middle − smallest = largest − middle (both should equal 2). Any deviation marks the odd triple.
Step-by-Step Solution:
Verification / Alternative check:
An AP with common difference 2 must satisfy smallest + largest = 2 * middle. For 11, 13, 14: 11 + 14 = 25 ≠ 26, confirming the mismatch.
Why Other Options Are Wrong:
They all form neat APs with common difference 2 upon sorting.
Common Pitfalls:
Forgetting to sort before checking differences, or miscomputing one of the differences and rejecting a valid AP.
Final Answer:
14, 11, 13 is the odd triple.
Discussion & Comments