mangamma
n is a positive integer less than 300. Is n prime?
(1) There is only one integer between 1 and n/2, exclusive, which divides n completely
(2) The sum of all the factors of n is greater than n + 1.
This looks like a tough problem on the surface. First, if n was less than some smaller value (like less than 50), I might take a moment and jot down all of the primes that could possibly fit, just so I had them handy. But because n is less than 300, that's still a lot of different primes. We'll have to start with the statements instead.
Neither statement looks really easy to me. However,
Statement 1 ends up being deceptively useful. Since there's an integer between 1 and n/2 that divides n, that means n can't be prime, so the answer to the question is "no." The fact that it's
only one integer is a red herring. You could easily waste a lot of time trying to find a value of n with this property, but you really don't need to, since you have enough to answer the yes/no question you were asked. This statement is
sufficient.
Statement 2: the sum of all the factors of n is greater than n+1. Having looked at statement 1, I'm already a bit suspicious that this statement may be trying to waste my time. Let's think about primes in general before we test cases. If n
was a prime, its only factors would be n and 1. Therefore, the sum of its factors would be n+1 exactly. However, we know this isn't true. Therefore, n must not be prime and the answer to the question must be "no." This statement is also
sufficient.
The correct answer is
D.