Difficulty: Easy
Correct Answer: 100
Explanation:
Problem restatement
Among 8, 27, 64, 100, 125, 216, 343, pick the single term that does not share the same core property.
Given data
Concept / Approach
Check for perfect powers. These look like cubes around small integers.
Step-by-step validation
8 = 23 (cube) 27 = 33 (cube) 64 = 43 (cube) 100 ≠ n3 for integer n (not a cube) 125 = 53 (cube) 216 = 63 (cube) 343 = 73 (cube)
Every term is a perfect cube except 100.
Verification / Alternative
Nearest cubes around 100 are 43 = 64 and 53 = 125; 100 lies between them and is not a cube.
Common pitfalls
Final Answer
100
Discussion & Comments