[Math] How to interpret combination and permutation problems

combinationspermutationsprobabilitystatistics

This is more of a methods question than asking for a specific answer:

In revisiting statistics and attempting various problems, I am curious if anyone has any insights on how to "see" the route to the solution for combination and permutation problems (and not just see the answer and determine the route in retrospect)?

For instance, I am familiar with the general principles of a factorial (n!) being the number of arrangements of any set of n items, and then a permutation nPk being the total possible arrangements of a subset of "n" items. Further refining this, the combination nCk is then the permutations with the various repeats of the same set (those in a different order) removed.

These make logical sense, and I can see them mathematically when doing basic problems that just outline the properties of these tools (e.g., finding the total combinations of 8 cards out of 52….yay, easy!)

The problem I have is then how these tools translate to more complex problems? For instance, and this is only the next step up in complexity, given any random 8 cards from a deck of 52, what are the number of possible such hands that contain a heart?

When I see this, I simply blank and do not know what the heck to do…at all. In essence, it's asking how many combinations of 8 contain a heart. Without making any assumptions or guesses, I know there are 752,538,150 possible combos of 8, so the answer is less than this, but that's where the logic ends. My brain is simply not seeing how to proceed, and I'm curious if there are any suggestions for how to "see" this?

What I do not want to do is see a bunch of similar problems, memorize a method for solving them, and then simply apply that method to other similar ones.

There is a missing link of sorts between knowing the required rules, and how to apply them. I'm looking for some hints, tips, tricks, and whatever approaches folks suggest for learning this.

Best Answer

I'm not sure there's a reductionistic trick that you can apply that will work generally. One learns the primitives well enough, and by well enough, I mean that one knows not only what each of them does, but what they can do in combination. With enough facility at that, one can construct any number of combinatorial frameworks to solve general problems.

In the kind of problems that you refer to specifically, one way to approach the problem is to consider how one would construct the selection. How would one go about constructing an eight-card hand that contains at least one heart? Well, you could take one of the $13$ hearts, and seven of the remaining $39$ cards; or two of the $13$ hearts, and six of the remaining $39$ cards; or three of the $13$ hearts, and five of the remaining $39$ cards; and so forth. That would lead to the summation

$$ \binom{13}{1}\binom{39}{7} + \binom{13}{2}\binom{39}{6} + \cdots + \binom{13}{8}\binom{39}{0} $$

Working through those terms would indeed give you the correct answer, $691014402$. However, upon looking at this, one might see a faster way to the answer, by constructing the hand "in the negative": that is to say, by finding which eight-card hands do not qualify, and subtracting them from all eight-card hands. That leads one to the simpler calculation

$$ \binom{52}{8} - \binom{39}{8} $$

which yields the same answer of $691014402$. One could view that as a trick, but it's really just a tool. One sees which "end" of the problem is more "finite", and generally prefers to tackle the problem from that end.

Hope this helps.

Related Question