Difficulty: Easy
Correct Answer: 40
Explanation:
Introduction / Context:
The goal is to detect the underlying rule that generates the series. Typically, simple addition with alternating steps is used in such problems, and one term may be deliberately incorrect.
Given Data / Assumptions:
Concept / Approach:
Check for a repeating increment pattern. Alternating additions such as +7, +5 are very common. Confirm whether each step aligns with that pattern.
Step-by-Step Solution:
Verification / Alternative check:
Reconstruct the intended series: 6, 13, 18, 25, 30, 37, 42. This confirms 40 is the only inconsistent term.
Why Other Options Are Wrong:
Common Pitfalls:
Computing differences inconsistently or skipping a step in the pattern. Always confirm the alternating cycle across multiple transitions.
Final Answer:
40
Discussion & Comments