Bunuel
Official Solution:
John has 12 clients and he wants to use color coding to identify each client. If either a single color or a pair of two different colors can represent a client code, what is the minimum number of colors needed for the coding? Assume that changing the color order within a pair does not produce different codes.
A. 24
B. 12
C. 7
D. 6
E. 5
Combination approach:
Let # of colors needed be \(n\), then it must be true that \(n+C^2_n \ge 12\) (\(C^2_n\) - # of ways to choose the pair of different colors from \(n\) colors when order doesn't matter).
\(n+\frac{n(n-1)}{2} \ge 12\);
Oh my God! I managed to find a way to 5 for this question. But I just couldn't understand the OA
How on earth does this:\(n+C^2_n \ge 12\) (\(C^2_n\)
translate into that?\(n+\frac{n(n-1)}{2} \ge 12\);
I feel like
MGMAT books are not exhaustive in probabilities and combi/permutations, there are just soo many things i didn't come across going through those books.
Are there theories somewhere on combi/permutations and probabilities? I am sooo lost here, i feel like crying.
\(C^2_n=\frac{n!}{2!(n-2)!}\). Now, notice that \(n!=(n-2)!*(n-1)*n\), hence \(C^2_n=\frac{n!}{2!(n-2)!}=\frac{(n-2)!*(n-1)*n}{2!(n-2)!}=\frac{(n-1)n}{2}\).