Difficulty: Medium
Correct Answer: 24
Explanation:
Introduction / Context:Many competitive exams include number series questions where one term does not follow the rule that generates the rest. The task is to detect the underlying operation pattern and identify the incorrect term that breaks it.
Given Data / Assumptions:
Concept / Approach:Look at consecutive ratios or divisors. In many decreasing sequences, each term is derived by dividing the previous term by a changing even number or by a consistent pattern such as dividing by descending even integers.
Step-by-Step Solution:
Compute ratios: 46080/3840 = 12.3840/384 = 10.384/48 = 8.Expected next divisor if pattern is descending even numbers is 6, so 48/6 = 8 is expected.But given term is 24, which corresponds to dividing by 2, breaking the pattern.Continuing the intended pattern: after divide by 6 should come divide by 4 then divide by 2, ending at 2 then 1.Verification / Alternative check:If we replace 24 with 8, the sequence of divisors becomes 12, 10, 8, 6, 4, 2 which is perfectly regular. This confirms 24 is the anomaly.
Why Other Options Are Wrong:
Common Pitfalls:Focusing only on differences rather than ratios can hide a clean divisor pattern. Always check both differences and ratios.
Final Answer:24
Discussion & Comments