by mxs2009 Mon Jul 20, 2009 4:24 am
I don't know what the explanation says, but you are asking when to use permutations vs. combinations.
In this example, I think of each of the medals having the ability to choose a team.
Teams: A B C D E F G H I J
Medals: Gold, Silver, Bronze
Gold medal: 10 choices: A B C D E F G H I J. Let’s say A wins the Gold.
Silver medal: 9 choices: B C D E F G H I J. Let’s say B wins the silver.
Bronze medal: 8 choices: C D E F G H I J. Let’s say C wins the bronze.
Note: Order matters here. If Gold chooses A, it cannot choose B or C or D.
Thus, I picked certain teams to win: I had 10 choices at first, then 9, then 8. The total number of options was 10 * 9 * 8 = 720. Using the permutation formula this is written as 10!/(10-3)!
So when do we use the combinations formula? Assume that all the medals are gold. How many ways can I give 3 gold medals to 10 teams?
Well, in this case, the order we pick teams doesn’t matter. If I give a gold to Argentina, Brazil and Chile, it’s the same as giving it to Chile, Argentina, and then Brazil. Either way, they’re going to be equally happy.
So, if we have 3 gold medals to give away, there are 3! or 6 variations (ie ABC, ACB, BAC, BCA, CAB, CBA) for every choice we pick. If we want to figure out how many combinations we have, we just create all the permutations and divide by all the redundancies
This can be written using the combinations formula 10!/3!7!
hope that helps