Looking at this problem, I need to find the probability that Ann's randomly selected integer is greater than Bob's.
Let me think about this systematically. If there are n integers from x to y inclusive, then n = y - x + 1.
For any two randomly selected integers from the same range, there are three possible outcomes:
Ann's number > Bob's number
Ann's number = Bob's number
Ann's number < Bob's number
By symmetry, P(Ann > Bob) = P(Bob > Ann).
Since all probabilities sum to 1:
P(Ann > Bob) + P(Ann = Bob) + P(Ann < Bob) = 1
2 × P(Ann > Bob) + P(Ann = Bob) = 1
So P(Ann > Bob) = [1 - P(Ann = Bob)]/2
Now I need P(Ann = Bob). There are n ways for them to pick the same number (one for each integer in the range), and n2 total possible outcomes.
So P(Ann = Bob) = n/n2 = 1/n
Therefore: P(Ann > Bob) = [1 - 1/n]/2 = (n-1)/(2n)
Now let me check each statement:
(1) y - x = 9
This tells me there are n = 9 + 1 = 10 integers in the range.
P(Ann > Bob) = (10-1)/(2×10) = 9/20
This is sufficient to answer the question.
(2) y = -20
This only gives me the upper bound. Without knowing x, I can't determine how many integers are in the range, so I can't calculate the probability.
This is not sufficient.