Difficulty: Easy
Correct Answer: 20
Explanation:
Given data
Concept/ApproachTwo interleaved patterns: first, numbers decreasing by 10; second, numbers increasing by 5.
Step-by-step calculationFirst subsequence (positions 1,3,5,...): 80 → 70 → 60 → (next 50)Second subsequence (positions 2,4,6,...): 10 → 15 → (next 20)Next overall term corresponds to the second subsequence: 20
Verification/AlternativeListing pairs: (80,10), (70,15), (60,20), ... confirms the pattern.
Common pitfalls
Final Answer20
Discussion & Comments