Difficulty: Medium
Correct Answer: -1
Explanation:
Introduction / Context:
Many series are constructed by interleaving two simpler sequences (one occupying the odd positions, the other the even). Identifying and separating them is key to determining the correct next term.
Given Data / Assumptions:
Concept / Approach:
Treat each subsequence independently. The odd-position terms increase by +3 each step. The even-position terms decrease by −2 each step. The next term to produce is the 10th term (even position), so continue the even subsequence.
Step-by-Step Solution:
Verification / Alternative check:
Extend both subsequences further and interleave them to confirm the original pattern is preserved.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting to track whether the next required term is from the odd or even subsequence leads to choosing the wrong branch.
Final Answer:
-1
Discussion & Comments