The acute angles of a right triangle are and , where and both and are prime numbers. What is the least possible value of ?
- A)
- B)
- C)
- D)
- E)
Answer
D
Key insight
The angles sum to 90, so test the primes b = 2, 3, 5, 7 in order until 90 - b is also prime.
Solution
In a right triangle the two acute angles satisfy . We want the smallest prime for which is also prime (and automatically ).
Check primes from the bottom:
- : , even, not prime.
- : , not prime.
- : , not prime.
- : , which is prime.
So the least possible value is .
The answer is .
Why this works
"Least possible" with a small search space means: start at the smallest candidate and test upward, stopping at the first success. Note the parity shortcut: since is even, would force , so both primes must be odd, which is why fails immediately.
The trap
Stopping at b = 2 because 2 is the smallest prime, without checking that 88 is not prime.
Common mistakes
- Stopping at b = 2 because 2 is the smallest prime, without checking that 88 is not prime.
- Misjudging or as prime; both have small factors (, ).
Techniques
Organized listing / direct enumeration