How Do Permutations Differ from Combinations in Mathematics?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 2K views
kasse
Messages
383
Reaction score
1
What's the difference between these two:

1) The number of permutations of n distinct objects taken r at a time is [tex]\frac{n!}{(n-r)!}[/tex]

and

2) The number of combinations of n distinct objects taken r at a time is [tex]\frac{n!}{r!(n-r)!}[/tex]

?
 
Physics news on Phys.org
Both ideas deal with counting the number of ways to make selections. For the formulas you have,

Permutations
* You have a collection of [tex]n[/tex] distinct items
* You select [tex]r[/tex] of them without replacement
* You are concerned with the order of selection

Combinations
* You have a collection of [tex]n[/tex] distinct items
* You select [tex]r[/tex] of them without replacement
* You are not concerned with the order of selection

Suppose your set is [tex]\{a, b, c, d\}<br /> <br /> The number of permutations of 2 things taken from this group is [tex]12[/tex]. They are (order is first selected, second selected)<br /> a, b<br /> a, c<br /> a, d<br /> b, a<br /> b, c<br /> b, d<br /> c, a<br /> c, b<br /> c, d<br /> d, a<br /> d, b<br /> d, c<br /> <br /> The number of combinations of two things taken from this group is [tex]6[/tex]. They are<br /> a,b<br /> a,c<br /> a,d<br /> b,c<br /> b,d<br /> c,d<br /> <br /> Think this way: combinations count subsets - order is not important.[/tex]