Difficulty: Medium
Correct Answer: 23
Explanation:
Introduction / Context:
Beyond simple prime vs composite, primes can be classified by residues modulo small integers. Here, the mod 4 classification separates one prime from the others.
Given Data / Assumptions:
Concept / Approach:
Compute n mod 4. If n ≡ 1 (mod 4), it leaves remainder 1 when divided by 4; if n ≡ 3 (mod 4), remainder 3. Many number theory results partition primes this way.
Step-by-Step Solution:
13 ÷ 4 → remainder 1 → 13 ≡ 1 (mod 4).17 ÷ 4 → remainder 1 → 17 ≡ 1 (mod 4).37 ÷ 4 → remainder 1 → 37 ≡ 1 (mod 4).23 ÷ 4 → remainder 3 → 23 ≡ 3 (mod 4).
Verification / Alternative check:
Quick mental division confirms the residues unambiguously. Only 23 falls into the 4k + 3 class here.
Why Other Options Are Wrong:
Common Pitfalls:
Equating “odd” with “3 mod 4.” Many odd numbers are 1 mod 4; verify the exact remainder.
Final Answer:
23
Discussion & Comments