Difficulty: Easy
Correct Answer: 23
Explanation:
Introduction / Context:This is a prime-number recognition problem. The sequence lists consecutive odd primes in ascending order. We need the next prime after 19.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
After 19, test 21: divisible by 3 and 7 ⇒ not prime.Next 23: not divisible by 2, 3, or 5; √23 < 5, so only small primes need testing ⇒ prime.Verification / Alternative check:Known list of primes confirms 23 follows 19 in the odd prime sequence after excluding 21 as composite.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:23
Discussion & Comments