Hi,This problem has a classic
trap — let me walk you through it.
We know
10 ≤ x ≤
20 and
5 ≤ y ≤
10, and xy must be a
prime number.
Step 1: Find the range of xy.
The smallest possible product is
10 ×
5 =
50.
The largest possible product is
20 ×
10 =
200.
So xy must be somewhere between
50 and
200.
Step 2: Here's the
KEY insight — the problem never says x and y are integers! They can be any real numbers within their ranges (like
10.5,
7.3, etc.).
Step 3: Since xy can be ANY value from
50 to
200 (not just integer products), we just need the smallest
prime number that is ≥
50.
Primes near
50:
47 (too small),
53 ✓
So
53 is our answer.
Step 4: Verify — can we actually make xy =
53?
Yes! Set x = 10 and y = 5.3. Both are within their allowed ranges, and 10 × 5.3 = 53, which is prime. ✓Answer: C (53)The Trap: If you assume x and y must be integers, then any product of two integers where both are greater than 1 can never be prime (since primes have no factors other than 1 and themselves). That would lead you to pick E (Not possible) — the most common wrong answer.General Principle: On GMAT, if a problem doesn't explicitly state that variables are integers (or positive integers), they can be decimals, fractions, or negative numbers. Always check what constraints are actually given!