Look at this series: 80, 10, 70, 15, 60, ... What number should come next?

Difficulty: Easy

Correct Answer: 20

Explanation:

Given data

  • Sequence: 80, 10, 70, 15, 60, ...

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

  • Continuing with 50 immediately; that would be the term after next.

Final Answer20

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion