Difficulty: Easy
Correct Answer: 4-16-32
Explanation:
Introduction / Context:
Power progressions are a classic theme: many triplets take the form (n, n^2, n^3). We identify the single triplet that does not fit.
Given Data / Assumptions:
Concept / Approach:
Compute squares and cubes of the first element and compare with the second and third elements of each triplet.
Step-by-Step Solution:
2^2 = 4, 2^3 = 8 → matches.3^2 = 9, 3^3 = 27 → matches.5^2 = 25, 5^3 = 125 → matches.4^2 = 16, 4^3 = 64 → third is 32 ✗
Verification / Alternative check:
Check ratios: in a true (n, n^2, n^3), ratios are n and n; only the 4-based triplet shows 16/4 = 4 and 32/16 = 2, not equal.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming geometric progression suffices. A GP with ratio 2 can also appear, but (n, n^2, n^3) imposes equal successive ratios (both equal to n).
Final Answer:
4-16-32
Discussion & Comments