Which of the following expressions is never a prime number when is a prime number?
- A)
- B)
- C)
- D)
- E)
Answer
C
Key insight
For any prime p other than 3, p^2 is 1 mod 3, so p^2 + 26 is divisible by 3; p = 3 gives 35 = 5*7.
Solution
A "never prime" expression must be composite for every prime , so it should carry a divisibility argument, and the natural modulus is .
If , then is not divisible by , so . Then
and , so it is composite. If , then , also composite. Hence (C) is never prime.
The other constants () are not , so this argument fails for them, and indeed each produces a prime: , , , .
The answer is .
Why this works
"Always composite" is a modular statement: find a modulus such that for every prime except possibly the primes dividing , then check those finitely many exceptions by hand. Since for , the constant must be ; only qualifies.
Alternative approach
Plug in primes systematically. With : (prime), , , (prime), . With : , (prime), , , . After two primes only (C) and (E) survive; a mod-3 check kills (C), and gives the prime for (E).
The trap
Testing only p = 2 and p = 3 and picking the first expression that looks composite, without checking the other choices produce a prime for some p.
Common mistakes
- Testing only p = 2 and p = 3 and picking the first expression that looks composite, without checking the other choices produce a prime for some p.
- Forgetting to check separately (where , not , mod ).
Techniques
Use the answer choices (mod checks, size, form) to eliminate or select · Test small/specific values or special cases to find or verify the answer