fsutanto wrote:Can anyone help explain the question below? This question is taken from Princeton's 1,012 GMAT practice questions on probability drill.
11. If a polygon has n > 4 sides, what is the probability in terms of n, that a triangle made up of vertices of the polygon shares at least one side with the polygon?
(a) n/4
(b) n! / [3!*(n-3)!]
(c) n!-3 / [3+(n+3)]
(d) 3!(n-3) / [(n-2)*(n-3)]
(e) 3!n! / (n+1)!
The answer according to the book is (d). The best way of doing this is to PLUG IN answer choices, but the explanation isn't exactly clear cut on how to achieve this. Can anyone help explain the approach? Thanks.
If that's how they wrote D, they don't have the right answer anywhere; the answer should be [(3!)(n-3)]/[(n-1)(n-2)].
You can certainly find the right answer here by plugging in different values of n, since for small values of n, we can determine what the answer should be. For example, if you have a square (so n=4), any triangle you make will absolutely need to use one edge (actually two edges) of the square, so the probability should be 1 if we plug in n=4. That would let you rule out every answer besides A and D (assuming D was written correctly). Now, you can see that A cannot be correct, since it will be greater than 1 in value if n is greater than 4, and probabilities can never be greater than 1.
You can, of course, solve the problem directly as well, though I don't think it's at all easy. First, if you have n points, to make a triangle we need to choose 3 of them, and order is not important; this can be done in nC3 = (n)(n-1)(n-2)/3! ways. That's the denominator of our probability. Now, there are a few ways to count the number of triangles we can make using at least one edge. We can, for example, consider two cases:
* if we make a triangle using two edges, we need to use two adjacent edges, so we can make n triangles (the number of vertices must be equal to the number of pairs of adjacent edges, since there's one vertex between each pair of adjacent edges).
* if we make a triangle using exactly one edge, we can choose that edge in n ways. Now we've chosen two points to use for our triangle; we then need to choose the third point. We can't use any of the 2 points we've already chosen, and nor can we use any of the 2 points adjacent to these, since then we'd be using two edges, not one. So we have n-4 ways to choose the third point, and n(n-4) triangles we can make using exactly one edge.
So we can make n + n(n-4) = n^2 - 3n = n(n-3) triangles using either one or two edges, and our probability is:
n(n-3)/[ (n)(n-1)(n-2)/3! ] = (3!)(n-3)/[(n-1)(n-2)]
That's probably too cumbersome a calculation to be realistic on the GMAT, however.