80 likes | 147 Views
Learn about permutations, combinations, factorial notation, and solve practical problems related to arranging and selecting items in a specific order in this comprehensive guide.
E N D
Def: A permutation is an arrangement of items in a particular order. Ex. How many ways can 10 books be line up on a shelf? Answer: 10*9*8*7*6*5*4*3*2*1 = 3,628,800 Def: n factorial For any positive integer n, n!= n*(n-1)*(n-2) … 3*2*1 For n=0, n!=1.
Number of Permuations The number of permutations of n items of a set arranged r items at a time nPr. nPr = n! / (n-r)! Ex. 10P4 = 10! / (10-4)! = 10! / 6! = 5040
Example: Seven yachts enter a race. First, second, and third will be given to the three fastest yachts. How many ways and the yachts finish? Answer: 7P3 = 7! /(7-3)! = 7! / 4! = 210
Def: A selection in which order does notmatter is a combination. Number of Combinations The number of combinations of n items of a set chosen r items at a time is nCr. nCr = n! / r!*(n-r)! Example: 5C3= 5! / 3!(5-3)! = 120/6*2 = 10
Example: Ten candidates are running for three seats in the student government. You may vote for as many as three candidates. In how many ways can you vote for three or fewer candidates? Answer: This is a combination so we can vote for 3 people, or 2 people, or 1 person, or none one.
3 people: 10C3 120 ways. 2 people: 10C2 45 ways 1 person: 10C1 10 ways No one: 10C0 1 way