Permutations vs. Combinations: What's the Difference?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
6 replies · 3K views
DecayProduct
Messages
67
Reaction score
0

Homework Statement



Not really a problem, just my understanding.

What is the difference between them? I know the formulae are different. They seem to be the same thing, that is, n objects taken r at a time. Any help in clarifying this would be appreciated.
 
Physics news on Phys.org
Permutations are all possible arrangements with the sequence of the objects considered. When the sequence of objects is not considered, then it results in a combination.
 
Do you know about vectors and sets? Suppose you have a set of 3 objects, S = {1, 2, 3}. Permutations of 2 objects count the number of 2-object vectors you can construct from this set (without replacement), so you have the size of the set of vectors {(1, 2), (2, 1), (1, 3), (3, 1), (2,3), (3, 2)}, which is 6 distinct pairs. The amount of combinations of two objects formed from objects of this set is the size of the set of sets {{1, 2}, {1, 3}, {2, 3}} which is 3 distinct pairs. You count combinations when you are only concerned about which objects are in each bag or string of text for example, not the order in which they are in the bag. Permutations matter when you are concerned about the order in which the objects are placed in each bag or text string.
Ie., if you are counting 3-letter words, combination counting would count the words DOT and TOD as the same word, while permutation counting notes that the letters are in a different order and counts them as different words.
 
Suppose you have a club of 50 people and you want to choose a 3 people as "president", "vice president", and "secretary". You can choose any of the 50 people as president, then any of the 49 remaining people as vice president, then any of the 48 remaining people as secretary. There are, then 50*49*48 ways of doing that. One way to write that is
[tex]50*49*48= \frac{50*49*48*\cdot\cdot\cdot*3*2*1}{47*46*\cdot\cdot\cdot*3*2*1}= \frac{50!}{47!}= \frac{50!}{(50-3)!}[/tex]. This is a "permutation" problem because
"Bill for president, Mary for vice president, Charles for secretary" as different from "Mary for president, Charles for vice president, Bill for secretary".

If instead you want a three person "operating committee" then it doesn't matter which is chosen first, which second, or which third. Now we do not want to treat "Bill for president, Mary for vice president, Charles for secretary" as different from "Mary for president, Charles for vice president, Bill for secretary". Now, since order in not important, it is a "combinations" problem. Since there are 3! ways of writing any three things, to discount interchanging the same three people, we need to divide by 3!:
[tex]\frac{50!}{47! 3!}= _{50}C_{3}[/tex].
 
Last edited by a moderator:
Halls I think you meant to put [tex]\frac{50!}{47!}[/tex]
 
You guys are great. I completely get it now!