MANASH94
Two different digits are chosen at random from the set [1,2,3,4,5,6,7,8]. What is the probability that their sum will exceed 13?
A. \(\frac{1}{7}\)
B. \(\frac{1}{12}\)
C. \(\frac{1}{14}\)
D. \(\frac{5}{14}\)
E. \(\frac{3}{14}\)
Can someone help:
Why are we not considering (8,7 and 7,8) as two different cases? Similarly for (6,8 and 8,6)
Those are indeed two different cases, and if you use the probability approach, the answer would be (1/8 * 1/7 * 2) + (1/8 * 1/7 * 2). This gives 1/14, which is correct. The factor of 2 in each case accounts for the two possible sequences of drawing: 7 then 8, and 8 then 7; 6 then 8, and 8 then 6.
However, when you solve using the combination approach, the denominator is 8C2, which counts
unordered pairs of two numbers out of eight. In the numerator, you also have just two
unordered cases: {7,8} and {6,8}. Since both numerator and denominator consistently disregard order, you again get the correct answer.
So, the key here to maintain consistency between the numerator and denominator.
Hope it's clear.