Difficulty: Easy
Correct Answer: 15
Explanation:
Introduction / Context:
In sets of small odd numbers, prime recognition is straightforward. The presence of a clear composite among primes creates a simple odd-one-out decision.
Given Data / Assumptions:
Concept / Approach:
Check divisibility by 3 and 5 first. 15 has factors 3 and 5, hence composite. 11, 13, 17 are primes.
Step-by-Step Solution:
15 = 3 * 5 → composite.11 → prime.13 → prime.17 → prime.
Verification / Alternative check:
No other small prime divides 11, 13, 17. They remain prime under trial division up to their square roots.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming all odd numbers are prime. Many odd numbers, including 15, are composite.
Final Answer:
15
Discussion & Comments