Difficulty: Easy
Correct Answer: 88
Explanation:
Introduction / Context:Many series grow by adding consecutively larger even numbers. Detecting that arithmetic progression within the differences yields the next term effortlessly.
Given Data / Assumptions:
Concept / Approach:Compute step-by-step increases and look for a simple pattern, such as an arithmetic progression in the differences. Then apply the next difference to the last term.
Step-by-Step Solution:
Differences: 18 − 10 = 8; 28 − 18 = 10; 40 − 28 = 12; 54 − 40 = 14; 70 − 54 = 16.The differences are even numbers increasing by 2 each time: 8, 10, 12, 14, 16.Next difference = 18.Next term = 70 + 18 = 88.Verification / Alternative check:Extending the even-number progression maintains consistency; any other next term would break the +2 step in the differences.
Why Other Options Are Wrong:
Common Pitfalls:Mistaking the pattern for multiplication or squares. The plain even-increment rule is both sufficient and consistent here.
Final Answer:88
Discussion & Comments