Difficulty: Medium
Correct Answer: GMJ
Explanation:
Introduction / Context:
Here each of the three character positions evolves according to its own rule. The first and second positions change with steadily increasing steps (including a negative direction for the second), and the third position follows a simple constant step.
Given Data / Assumptions:
Concept / Approach:
Decompose into columns (first, second, third letters) and analyze each sub-sequence. Look for +1, +2, +3 trends and for negative steps in the middle column.
Step-by-Step Solution:
Verification / Alternative check:
Check forward from GMJ: +4 on first gives K, −6 on second gives G, +2 on third gives L. This exactly reconstructs KGL.
Why Other Options Are Wrong:
Common Pitfalls:
Trying to move whole triplets together; overlooking that each position forms its own arithmetic progression (with different signs).
Final Answer:
GMJ
Discussion & Comments