Difficulty: Easy
Correct Answer: 96
Explanation:
Introduction / Context:
Recognizing factorials is a staple skill in series: 0! = 1, 1! = 1, 2! = 2, 3! = 6, 4! = 24, 5! = 120, 6! = 720. A single non-factorial value stands out as the odd term.
Given Data / Assumptions:
Concept / Approach:
Match each term to n! for n = 0 through 6. The mismatch is the wrong number. Factorials grow rapidly; any off-by-one multipliers become obvious.
Step-by-Step Solution:
1 = 0! (or 1!) ✓1 = 1! ✓2 = 2! ✓6 = 3! ✓24 = 4! ✓96 ≠ 5! (should be 120) ✗720 = 6! ✓
Verification / Alternative check:
Since 96 = 24 * 4, while 5! must be 24 * 5, replacing 96 by 120 restores the perfect factorial sequence.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
96
Discussion & Comments