6-Combinations and Permutations
6-Combinations and Permutations
Analysis
Combinations
Permutations
What is Combinatorial
Analysis?
Study of permutations and combinations
is concerned with determining the number
of logical possibilities of some event
without necessarily listing each case.
Total = m * n
(10) * (8) = 80
MATH 1183 Computer Mathematics and Statistics
5
Applies to multiple events
License plates of a certain state contain
two letters followed by three digits, where
the first digit cannot be zero. What are
the number of possible different license
plates? There are 26 letters in the
alphabet!
26 * 26 * 9 * 10 * 10 = 608 400
6! = 6 * 5! = 6 * 120 = 720
8! 8x7x6!
= = 8x7 = 56
6! 6!
12!
Question: What is
9!
= 12*11*10 = 1320
MATH 1183 Computer Mathematics and Statistics
10
Difference between
Combinations and Permutations
3!
3 P3 = = 3! = 3x2x1 = 6
( 3 − 3)!
Lettered the parts A, B, C:
ABC BAC CAB ACB BCA CBA
MATH 1183 Computer Mathematics and Statistics
15
Permutation Example
In how many ways can first and second
place be awarded to 10 people? Order is
important.
10!
10 P 2 = = 10 x9 = 90
(10 − 2)!
n!
nCr =
r! (n − r )!
MATH 1183 Computer Mathematics and Statistics
18
Combination Formula
The order of the selected objects is NOT
important!
12!
12C 5 = = 792
5! (12 − 5)!