topspin330
List L: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
A group of 3 integers is to be selected one after the other, and at random and without replacement, from list L above. What is the probability that the 3 integers selected are not 3 consecutive integers?
a - 3/5
b - 7/10
c - 3/4
d - 4/5
e - 14/15
One way to do this is to count all the consecutive combinations and divide that by 10C3, subtract the whole thing from 1. But is there a more systematic and efficient way to do this problem? kaplan books only provide brute force solutions without any formulas. thanks.
There is a little bit of ambiguity in this question. When you read it, you wonder whether the order of selection is important i.e. should the numbers be selected in a consecutive manner i.e. are they looking for the probability of selecting 2, then 3 and then 4 or is this selection made in any other order e.g. 3, then 2 and then 4 fine too.
You need to guess from the answer options that the order of selection is not important. In that case, the solution provided above is the best and fastest method.
In case the order of selection is important, the required probability = (8/10)*(1/9)*(1/8) = 1/90
i.e. you can select any of the first 8 integers first. Now both the second and the third pick are defined e.g. if you select 4 on your first pick, you need to select 5 next (probability of that = 1/9 since there are total 9 numbers left) and then you need to select 6 (probability of that = 1/8 since there are total 8 numbers left)
I too reached at 1/90, but then I subtracted it from 1 to get 89/90. What error am I making?