CS1800: Permutations & Combinations. Professor Kevin Gold

Size: px
Start display at page:

Download "CS1800: Permutations & Combinations. Professor Kevin Gold"

Transcription

1 CS1800: Permutations & Combinations Professor Kevin Gold

2 Permutations A permutation is a reordering of something. In the context of counting, we re interested in the number of ways to rearrange some items. For example, there are 6 ways to rearrange the letters ABC: ABC ACB BAC BCA CAB CBA ABCD ABDC ACBD ACDB ADBC ADCB BACD BADC BCAD BCDA

3 There Are N! Permutations Of N Things Recall N! ( N factorial) is N * (N-1) * * 3 * 2 * 1 There are N! permutations of N items. You have N choices for the first item, then N-1 for the second (since you can t choose the first item again), then N-2 for the third, and so on until there s only one item left. A C B A B B C A C C B C A B A ABC ACB BAC BCA CAB CBA

4 3! = 6 4! = 24 5! = 120 6! = 720 7! = ! = 3,628,800 20! = 2,432,902,008,176,640,000 30! = N! Grows Very Quickly You would not want to write a program that tries all permutations unless the number of inputs is very small. That s because N! grows faster than exponentially Consider any fixed base exponential function, like 100 N. Once N > 100, N! is multiplying * 101 * 102 * 103 The same is true of any b N. N! will eventually surpass it. Age of universe in seconds: 432,000,000,000,000, ,252,859,812,191,058,636,308,480,000,000

5 r-permutations Suppose we are not permuting all N items, but choosing a subset of them and an order for the subset. There are N choices for what goes first, then N-1 for what goes second, down to N-r+1 choices, where r is the number of items. Example: 10 person race, how many ways to have a gold/ silver/bronze finish? 10 choices for gold, then 9 for silver, then 8 for bronze. 10*9*8 = 720. This is called an r-permutation and the particular value is often abbreviated P(n, r) for example, above, P(10,3).

6 An r-permutation Formula, And Its Issues If we would like to multiply out N*(N-1)* *(N-r+1), we could write this instead as N!/(N-r)! The terms (N-r)*(N-r-1)* *3*2*1 cancel on the top and bottom, leaving N*(N-1)* *(N-r+1) This form N!/(N-r)! looks elegant, but isn t usually what you want to work with When working by hand, you ll cancel all the terms anyway: P(10,3) = 10*9*8*7*6*5*4*3*2*1/7*6*5*4*3*2*1 When working on a computer, trying to compute large factorials may result in overflow - errors resulting from numbers that are too big Plus it s slower to do all that multiplication N*(N-1)* *(N-r+1) has an intuitive meaning and a sanity check: don t multiply more terms than you have items

7 r-permutation Examples 10 Star Wars movies, how many ways to choose 4 to watch in a marathon and an order to watch them in? 10*9*8*7 = 5040 possible orderings of 4 movies If there are 1000 students in an organization, how many possible tickets for President, VP, and Treasurer? 1000 * 999 * 998 = 997,002,000

8 Special Roles are Essentially Orderings President VP Treasurer (Alice, Bob, Eve) President VP Treasurer (Bob, Alice, Eve)

9 Contrasting Permutations With Simple Use of the Product Rule The mathematics of permutations are appropriate when we use up options. If you can pick the same thing over and over, don t decrease the number of options by one; it s not an r- permutation. 8-character passwords in which each character is a lowercase letter: 26 8 The same situation, but we re not allowed to reuse letters: 26*25*24*23*22*21*20*19 = P(26, 8)

10 Maximum Number of Directed Edges in a Graph is an r-permutation How many possible directed edges are there, assuming no self-loops? To choose a single edge, we would choose from all V vertices, then choose where it goes from the remaining V -1. That s V ( V -1) possibilities in all, or P( V, 2). We can think of the undirected case as dividing this number by 2 to get rid of the 2 directions - or we can think of it as a combination, our next topic 4*3 = 12

11 Combinations If we are choosing a subset of items, and we only care about what is in the subset and not its order, this is a combination. Some examples: Choosing 4 people from 100 to be on a committee. Choosing 3 movies to watch from 10, but we don t consider different orderings of the same 3 movies to be different. Choosing two vertices in an undirected graph to have an edge (the vertices aren t ordered in an undirected graph) The difference from a permutation is that we do not get to choose an ordering for the items - the order doesn t matter or is chosen for us

12 Deriving the Formula for Combinations (Part 1) Suppose we just use our tool for counting r-permutations to count combinations. Ways to choose 3 items from 4, with ordering: 4*3*2 = 24 But if we list all r-permutations, we will list the same set repeatedly. In fact, we ll list it once for every way its items can be ordered. With combinations, we just want the number of sets. If items are {A, B, C, D}: ABC ACB BAC BCA CAB CBA <= All {A,B,C} ABD ADB BAD BDA DAB DBA <= All {A,B,D} ACD ADC CAD CDA DAC DCA <= All {A,C,D} BCD BDC CBD CDB DBC DCB <= All {B,C,D}

13 Deriving the Formula for Combinations (Part 2) We saw that if we try to count combinations of 3 items from 4 using r-permutations, we overcount by a factor of 6. The fact that we re overcounting by a factor of 6 stems from the fact that there are 3! = 6 possible permutations of each set of 3 items, and we will list them all instead of counting them once We can fix this by dividing by 6 to get the true count: 4*3*2/6 = 4 In general, if we try to count combinations (sets where order doesn t matter) by counting r-permutations (tuples where order does matter), we will overcount by a factor of r!, the number of ways to reorder the chosen items. So our strategy is to use the r-permutation formula but divide by r!

14 The Combinations Formula The number of ways to choose a subset of r items n from n items can be written C(n,r) or ( r ) ( n choose r ) and is equal to n! or P(n,r) (n-r)!r! r! It s the r-permutation formula divided by r!, the number of ways to rearrange the r chosen items; this is the factor by which using r-permutations would overcount For example, C(10, 3) = 10!/(3!7!) = 10*9*8/3*2*1 = 120

15 Illustrating C(4,2) Four items {A, B, C, D}, choosing a subset of 2 The r-permutations of 2 Rearrange to illustrate the items are: repeated items: AB CA AB BA AC CB AC CA AD CD 4*3 = 12 AD DA 12/2! = 6 BA DA BC CB BC DB BD DB BD DC CD DC

16 Combinations Examples Choosing 4 people from 100 to be on a committee: C(100,4) = 100*99*98*97/4*3*2*1 = Possible 5-card hands to be dealt from 52 card deck (order of the hand doesn t matter): C(52, 5) = 52*51*50*49*48/5*4*3*2*1 = Number of 2-card hands that are both Jacks or better (16 cards like that in deck): C(16,2) = 16*15/2 = 120

17 Number of Edges in a Complete Undirected Graph We choose a subset of 2 distinct vertices to choose an edge That is a choice of 2 items from V : C( V, 2) Which is the formula we saw before, V ( V -1)/2

18 Number of Triangles in a Complete Undirected Graph We choose a subset of 3 distinct vertices to choose an a triangle That is a choice of 3 items from V : C( V, 3) So V ( V -1)( V -2)/6 C(4,3) = 4

19 Combinations and Order Doesn t Matter Sometimes combinations are said to be used when order doesn t matter for the items. Pick 3 movies from 10, only care about the set and not the order: C(10,3) Pick 3 movies and an ordering for them: P(10,3) But be careful - if an ordering is forced on us, we re essentially only picking the set and not the ordering. And then we still use combinations. 10 movies, choose 3 to watch in chronological order: C(10, 3) = 10*9*8/6 = 120.

20 Choosing What s In, Choosing What s Out Sometimes it s easier to think about choosing what won t go into your subset. Choosing who s not in the club is the same as choosing who s in it. This is reflected in the math of combinations. n ( ) = ( ). (C(n,r) = C(n,n-r)) r n n-r The number of ways to choose items that are included, is equal to the number of ways to choose what is not included. In our earlier example, we showed C(4,3) = 4. This is obvious if we think of choosing 3 items as choosing which item to exclude. _ Choose 2 or choose 3: C(5,2)=C(5,3)=10

21 r-permutations versus Combinations A C E D B A C E D B ABE BEA AEB EAB BAE EBA A B D A B E P(5,3) orderings of size 3 C(5,3) subsets of size 3

22 r-permutations versus Combinations If r-permutations are choosing orderings and combinations are choosing subsets, which one is appropriate? And what s the calculation? Number of ways to assign five roles - captain, first mate, science officer, communications officer, ensign - among 200 people Number of 8-bit strings like that have exactly 4 bits set to 1 Number of iterations necessary for a brute force sorting algorithm that tries all possible orderings of the data Number of racks possible in a Scrabble-like game where you draw 7 tiles from 60, assuming each tile is unique and you can rearrange your rack at will

23 r-permutations versus Combinations If r-permutations are choosing orderings and combinations are choosing subsets, which one is appropriate? And what s the calculation? Number of ways to assign five roles - captain, first mate, science officer, communications officer, ensign - among 200 people P(200,5) Number of 8-bit strings like that have exactly 4 bits set to 1 C(8,4) Number of iterations necessary for a brute force sorting algorithm that tries all possible orderings of the data N! Number of racks possible in a Scrabble-like game where you draw 7 tiles from 60, assuming each tile is unique and you can rearrange your rack at will C(60, 7)

24 Two-Step Problems Sometimes we re trying to count something complicated, which would be chosen over a series of steps. When that happens, break the problem down into steps, and multiply the choices you had at each step. Try to have a clear idea of the situation after each choice is made. Did you eliminate possibilities with your earlier choices?

25 Two-Step Problems I have 250 students, and we re going to choose two quiz bowl type teams with 5 people each - a red team and a blue team. How many ways are there to choose the red team and the blue team (assume it s different if your team is a different color)?

26 Two Team Solution With Team Names, and a Problem of Symmetry I have 250 students, and we re going to choose two quiz bowl type teams with 5 people each - a red team and a blue team. How many ways are there to choose the red team and the blue team (assume it s different if your team is a different color)? We choose 5 from the 250, and then we ll have 245 left from which to choose 5 more. C(250, 5) * C(245, 5) = * x10 19 Now suppose I didn t care who was red and who was blue - if I swap team colors, it counts as the same teams. How does that affect the number of different teams?

27 Two Team Solution With Team Names, and a Problem of Symmetry I have 250 students, and we re going to choose two quiz bowl type teams with 5 people each - a red team and a blue team. How many ways are there to choose the red team and the blue team (assume it s different if your team is a different color)? We choose 5 from the 250, and then we ll have 245 left from which to choose 5 more. C(250, 5) * C(245, 5) = * x10 19 Now suppose I didn t care who was red and who was blue - if I swap team colors, it counts as the same teams. How does that affect the number of different teams? Divide by two

28 Combinations and the Power Set Recall that the power set is the number of subsets of any size, while for a combination, we re looking at the number of subsets of a particular size. That suggests these values should be related - and they are. In general: N N N 0 1 N ( ) + ( ) + + ( ) = 2 N Because the total number of subsets is equal to the number of subsets of size 0, plus the number of subsets of size 1, plus the number of subsets of size 2

29 A Power Set Problem My neighbors held a costume contest for 10 people in which they would award a first place, a second place, and then some arbitrary number of honorable mentions (maybe none, maybe everybody who didn t win first or 2nd). How many results were possible for this contest?

30 A Power Set Problem My neighbors held a costume contest for 10 people in which they would award a first place, a second place, and then some arbitrary number of honorable mentions (maybe none, maybe everybody who didn t win first or 2nd). How many results were possible for this contest? The long way:10*9*(c(8,0)+c(8,1)+c(8,2)+ +C(8,8)) = 10*9*( ) = Recognizing this is a power set: 10*9*2 8 = 23040

31 Combinations and Permutations in Multistep Problems Some more complex counting problems might include the following: I want to make a playlist of 5 Beatles songs (out of 10 in my library) and 7 Pomplamousse songs (out of 13 in my library). I don t want any repeat songs. How many playlists are possible? This is both a permutation and a combination problem. I first need to choose where in the playlist the different kinds of songs will go, Beatles versus Pomplamousse. Choosing where is a combination. It s a subset of places. Then I need to choose the songs and orderings for each artist. That s an r-permutation in each case.

32 Solving the Playlist Problem: A Combination for Special Locations Recall: playlist of 5 out of 10 Beatles, 7 out of 13 Pomplamousse, no repeats So I have 5+7=12 slots in the playlist to fill, to start. I need to break the construction down into a series of decisions. My first will be, where will the Beatles songs go? That s a choice of a set of slots in the playlist - it doesn t make sense to choose their order. C(12, 5)

33 Solving the Playlist Problem: r-permutations to fill in the rest Recall: playlist of 5 out of 10 Beatles songs, 7 out of 13 Pomplamousse, no repeats I don t need to also choose the Pomplamousse song locations. That s implicit from the Beatles locations; nothing left to choose there So now I can pick what the Beatles songs are. Order matters for a playlist, so it s an r-permutation. DP _ SFF _ HJ IatW HS _ P(10,5) Then I can pick what the Pomplamousse songs are, filling in the rest of the blanks. P(13, 7) The total number of possibilities is the product of the number of options I had at each juncture. C(12, 5)*P(10,5)*P(13,7) = 792*30240* x10 14

34 Anagrams How many different ways are there to rearrange N letters? If they re all different, N! But if there are repeated letters, that would overcount. MOON with the middle two letters swapped doesn t result in a different word. We can again take a multistep approach. Where will the O s go? _ O _ O C(4,2) = 6 Fill in the rest of the letters: P(2, 2) = 2 Total possibilities, 6 * 2 = 12. Another option would have been to realize that listing all permutations would list each pattern twice, once for each ordering of the O s. 4!/2 = 12.

35 Anagram With Multiple Doubled Letters Anagrams for the XYZZY, an award for interactive fiction: Choose where the Y s go: C(5,2) Y Y _ Choose where the Z s go: C(3,2) Y Z _ Y Z Choose where the X goes: no choice! Y Z X Y Z C(5,2) * C(3,2) = 10*3 = 30.

36 Pascal s Triangle Pascal s Triangle is an interesting alternate way to generate the combination numbers, especially if you need a lot of them for the same n. Start with a 1 at the top, then 1 1. Then for every row after, start and end with a 1, and otherwise sum the two numbers above it in the triangle. n Row n, entry r will be ( r ), if you count the first row as n=0 and the first entry of the row as r=0. C(4,2) = 6 C(5,2) = 10 etc

37 Why Should That Work? To really prove this, we d need induction, the tool for showing that a pattern keeps working But intuitively, there are two ways to get C(n,r): Use the last item added and then r-1 items from the previous n-1 items. C(n-1,r-1) Use only items from the previous n-1 items. C(n-1, r) Thus C(n,r) = C(n-1, r-1) + C(n-1,r) and that is how Pascal s triangle is constructed. C(4,2) = C(3,1) + C(3,2) ABC ABC D + ABC ABC ABC ABC

38 The Quincunx/Galton Board Suppose we arrange a board with a pyramid of pins in it arranged just right, and drop a ball on the top pin It has a chance of going left or right, and at the next level, it will have another chance of going left or right where it lands The number of balls in each bin at the bottom will be proportional to the number of paths to that bin To land in bin r, the ball needs to bounce left (n-r) times and bounce right r times The number of paths to a particular bin is therefore C(n,r) - the thing we are choosing is when we bounce right The overall effect is a distribution at the bottom proportional to a row of Pascal s triangle! 3:00

39 The Binomial Theorem (x + y) 2 = x 2 + 2xy + y 2 (x + y) 3 = x 3 + 3x 2 y + 3xy 2 + y 3 (x + y) 4 = x 4 + 4x 3 y + 6x 2 y 2 + 4xy 3 + y 4 (x + y) 5 = x 5 + 5x 4 y + 10x 3 y x 2 y 3 + 5xy 4 + y 5 Where have we seen these coefficients before?

40 The Binomial Theorem The Binomial Theorem states that (x + y) n = Σ( )x n-j y j n j=0 n j We could rephrase this as stating that the coefficients are equal to the nth row of Pascal s triangle, where item j is the coefficient ( ) Sometimes these numbers are called binomial coefficients for this reason Why should this work? n j

41 Binomial Theorem Explained When multiplying (x+y)(x+y) (x+y), we generate all possible terms that result from choosing x or y from each (x+y). Example: (x+y)(x+y)(x+y) = x*x*x + x*x*y + x*y*x + x*y*y + y*x*x + y*x*y + y*y*x + y*y*y = x 3 + 3x 2 y + 3xy 2 + y 3 Each term is a way to choose a subset of terms to be y instead of x, ranging from none of them to all of them The coefficient of x n-j y j is the number of terms in the expansion that have j y s - and this is equal to the number of ways to choose j of n terms to get a y from. Above, for example, there are C(3,1) ways to choose one term to contribute a y: x*x*y, x*y*x, y*x*x

42 Binomial Theorem Explained Another example with (x+y) 4 : (x+y)(x+y)(x+y)(x+y) = Terms from choosing 0 y s: x*x*x*x = x 4 Terms from choosing 1 y: x*x*x*y + + y*x*x*x = 4x 3 y Choosing 2 y s: x*x*y*y + + y*y*x*x = C(4,2)x 2 y 2 = 6x 2 y 2 Choosing 3 y s: x*y*y*y + + y*y*y*x = 4xy 3 Choosing 4 y s: y*y*y*y = y 4 (x+y) 4 = x 4 + 4x 3 y + 6x 2 y 2 + 4xy 3 + y 4 = C(4,0)x 4 + C(4,1)x 3 y + C(4,2)x 2 y 2 + C(4,3)xy 3 + C(4,4)y 4

43 A minor point about tricky binomial theorem problems If multiplying a term that already has coefficients, like (2x + 3y) 3, just keep in mind that an existing coefficient will be raised to the same power as its variable, then multiplied by the binomial coefficient. (2x + 3y) 3 - Pascal s triangle is 1, 3, 3, 1 1*(2x) 3 + 3*(2x) 2 (3y) + 3*(2x)(3y) 2 + 1*(3y) 3 = 8x x 2 y + 54xy y 3

44 Summary Use r-permutations P(n,r) when choosing an ordering for a subset of items. N*(N-1)* *(N-r+1) n Use combinations C(n,r) = ( ) when choosing a subset without r ordering it. Use neither - just the product rule - if you re not eliminating an option by picking it (for example, with passwords with reusable letters) Break multistep problems into steps, and multiply the number of possibilities for each step. Combinations come up in the binomial theorem because multiplying out (x+y) n results in all possible ways to choose 0, 1, 2, 3,, n terms to be y s.

Well, there are 6 possible pairs: AB, AC, AD, BC, BD, and CD. This is the binomial coefficient s job. The answer we want is abbreviated ( 4

Well, there are 6 possible pairs: AB, AC, AD, BC, BD, and CD. This is the binomial coefficient s job. The answer we want is abbreviated ( 4 2 More Counting 21 Unordered Sets In counting sequences, the ordering of the digits or letters mattered Another common situation is where the order does not matter, for example, if we want to choose a

More information

MTH 245: Mathematics for Management, Life, and Social Sciences

MTH 245: Mathematics for Management, Life, and Social Sciences 1/1 MTH 245: Mathematics for Management, Life, and Social Sciences Sections 5.5 and 5.6. Part 1 Permutation and combinations. Further counting techniques 2/1 Given a set of n distinguishable objects. Definition

More information

Permutations and Combinations

Permutations and Combinations Permutations and Combinations NAME: 1.) There are five people, Abby, Bob, Cathy, Doug, and Edgar, in a room. How many ways can we line up three of them to receive 1 st, 2 nd, and 3 rd place prizes? The

More information

Reading 14 : Counting

Reading 14 : Counting CS/Math 240: Introduction to Discrete Mathematics Fall 2015 Instructors: Beck Hasti, Gautam Prakriya Reading 14 : Counting In this reading we discuss counting. Often, we are interested in the cardinality

More information

CHAPTER 8 Additional Probability Topics

CHAPTER 8 Additional Probability Topics CHAPTER 8 Additional Probability Topics 8.1. Conditional Probability Conditional probability arises in probability experiments when the person performing the experiment is given some extra information

More information

Welcome to Introduction to Probability and Statistics Spring

Welcome to Introduction to Probability and Statistics Spring Welcome to 18.05 Introduction to Probability and Statistics Spring 2018 http://xkcd.com/904/ Staff David Vogan dav@math.mit.edu, office hours Sunday 2 4 in 2-355 Nicholas Triantafillou ngtriant@mit.edu,

More information

About Permutations and Combinations: Examples

About Permutations and Combinations: Examples About Permutations and Combinations: Examples TABLE OF CONTENTS Basics... 1 Product Rule...1-2 Sum Rule...2 Permutations... 2-3 Combinations... 3-4 Pascal s Triangle... 4 Binomial Theorem.. 4 Pascal s

More information

Coding Theory on the Generalized Towers of Hanoi

Coding Theory on the Generalized Towers of Hanoi Coding Theory on the Generalized Towers of Hanoi Danielle Arett August 1999 Figure 1 1 Coding Theory on the Generalized Towers of Hanoi Danielle Arett Augsburg College Minneapolis, MN arettd@augsburg.edu

More information

LESSON 4 COMBINATIONS

LESSON 4 COMBINATIONS LESSON 4 COMBINATIONS WARM UP: 1. 4 students are sitting in a row, and we need to select 3 of them. The first student selected will be the president of our class, the 2nd one selected will be the vice

More information

Permutations and Combinations

Permutations and Combinations Permutations and Combinations Rosen, Chapter 5.3 Motivating question In a family of 3, how many ways can we arrange the members of the family in a line for a photograph? 1 Permutations A permutation of

More information

Permutations and Combinations

Permutations and Combinations Motivating question Permutations and Combinations A) Rosen, Chapter 5.3 B) C) D) Permutations A permutation of a set of distinct objects is an ordered arrangement of these objects. : (1, 3, 2, 4) is a

More information

COUNTING AND PROBABILITY

COUNTING AND PROBABILITY CHAPTER 9 COUNTING AND PROBABILITY Copyright Cengage Learning. All rights reserved. SECTION 9.2 Possibility Trees and the Multiplication Rule Copyright Cengage Learning. All rights reserved. Possibility

More information

CS1800: More Counting. Professor Kevin Gold

CS1800: More Counting. Professor Kevin Gold CS1800: More Counting Professor Kevin Gold Today Dealing with illegal values Avoiding overcounting Balls-in-bins, or, allocating resources Review problems Dealing with Illegal Values Password systems often

More information

Permutations, Combinations and The Binomial Theorem. Unit 9 Chapter 11 in Text Approximately 7 classes

Permutations, Combinations and The Binomial Theorem. Unit 9 Chapter 11 in Text Approximately 7 classes Permutations, Combinations and The Binomial Theorem Unit 9 Chapter 11 in Text Approximately 7 classes In this unit, you will be expected to: Solve problems that involve the fundamental counting principle.

More information

Combinatorial Proofs

Combinatorial Proofs Combinatorial Proofs Two Counting Principles Some proofs concerning finite sets involve counting the number of elements of the sets, so we will look at the basics of counting. Addition Principle: If A

More information

Topics to be covered

Topics to be covered Basic Counting 1 Topics to be covered Sum rule, product rule, generalized product rule Permutations, combinations Binomial coefficients, combinatorial proof Inclusion-exclusion principle Pigeon Hole Principle

More information

elements in S. It can tricky counting up the numbers of

elements in S. It can tricky counting up the numbers of STAT-UB.003 Notes for Wednesday, 0.FEB.0. For many problems, we need to do a little counting. We try to construct a sample space S for which the elements are equally likely. Then for any event E, we will

More information

Generalized Permutations and The Multinomial Theorem

Generalized Permutations and The Multinomial Theorem Generalized Permutations and The Multinomial Theorem 1 / 19 Overview The Binomial Theorem Generalized Permutations The Multinomial Theorem Circular and Ring Permutations 2 / 19 Outline The Binomial Theorem

More information

With Question/Answer Animations. Chapter 6

With Question/Answer Animations. Chapter 6 With Question/Answer Animations Chapter 6 Chapter Summary The Basics of Counting The Pigeonhole Principle Permutations and Combinations Binomial Coefficients and Identities Generalized Permutations and

More information

Mathematics Probability: Combinations

Mathematics Probability: Combinations a place of mind F A C U L T Y O F E D U C A T I O N Department of Curriculum and Pedagogy Mathematics Probability: Combinations Science and Mathematics Education Research Group Supported by UBC Teaching

More information

Discrete Mathematics: Logic. Discrete Mathematics: Lecture 15: Counting

Discrete Mathematics: Logic. Discrete Mathematics: Lecture 15: Counting Discrete Mathematics: Logic Discrete Mathematics: Lecture 15: Counting counting combinatorics: the study of the number of ways to put things together into various combinations basic counting principles

More information

Chapter 11, Sets and Counting from Applied Finite Mathematics by Rupinder Sekhon was developed by OpenStax College, licensed by Rice University, and

Chapter 11, Sets and Counting from Applied Finite Mathematics by Rupinder Sekhon was developed by OpenStax College, licensed by Rice University, and Chapter 11, Sets and Counting from Applied Finite Mathematics by Rupinder Sekhon was developed by OpenStax College, licensed by Rice University, and is available on the Connexions website. It is used under

More information

Permutations and Combinations

Permutations and Combinations Permutations and Combinations Introduction Permutations and combinations refer to number of ways of selecting a number of distinct objects from a set of distinct objects. Permutations are ordered selections;

More information

In this section, we will learn to. 1. Use the Multiplication Principle for Events. Cheesecake Factory. Outback Steakhouse. P.F. Chang s.

In this section, we will learn to. 1. Use the Multiplication Principle for Events. Cheesecake Factory. Outback Steakhouse. P.F. Chang s. Section 10.6 Permutations and Combinations 10-1 10.6 Permutations and Combinations In this section, we will learn to 1. Use the Multiplication Principle for Events. 2. Solve permutation problems. 3. Solve

More information

12th Bay Area Mathematical Olympiad

12th Bay Area Mathematical Olympiad 2th Bay Area Mathematical Olympiad February 2, 200 Problems (with Solutions) We write {a,b,c} for the set of three different positive integers a, b, and c. By choosing some or all of the numbers a, b and

More information

Finite Math - Fall 2016

Finite Math - Fall 2016 Finite Math - Fall 206 Lecture Notes - /28/206 Section 7.4 - Permutations and Combinations There are often situations in which we have to multiply many consecutive numbers together, for example, in examples

More information

The Product Rule The Product Rule: A procedure can be broken down into a sequence of two tasks. There are n ways to do the first task and n

The Product Rule The Product Rule: A procedure can be broken down into a sequence of two tasks. There are n ways to do the first task and n Chapter 5 Chapter Summary 5.1 The Basics of Counting 5.2 The Pigeonhole Principle 5.3 Permutations and Combinations 5.5 Generalized Permutations and Combinations Section 5.1 The Product Rule The Product

More information

UNIT 2. Counting Methods

UNIT 2. Counting Methods UNIT 2 Counting Methods IN THIS UNIT, YOU WILL BE EXPECTED TO: Solve problems that involve the fundamental counting principle. Solve problems that involve permutations. Solve problems that involve combinations.

More information

Date Topic Notes Questions 4-8

Date Topic Notes Questions 4-8 These Combinatorics NOTES Belong to: Date Topic Notes Questions 1. Chapter Summary 2,3 2. Fundamental Counting Principle 4-8 3. Permutations 9-13 4. Permutations 14-17 5. Combinations 18-22 6. Combinations

More information

COMPSCI 575/MATH 513 Combinatorics and Graph Theory. Lecture #30: The Cycle Index (Tucker Section 9.3) David Mix Barrington 30 November 2016

COMPSCI 575/MATH 513 Combinatorics and Graph Theory. Lecture #30: The Cycle Index (Tucker Section 9.3) David Mix Barrington 30 November 2016 COMPSCI 575/MATH 513 Combinatorics and Graph Theory Lecture #30: The Cycle Index (Tucker Section 9.3) David Mix Barrington 30 November 2016 The Cycle Index Review Burnside s Theorem Colorings of Squares

More information

Introductory Probability

Introductory Probability Introductory Probability Combinations Nicholas Nguyen nicholas.nguyen@uky.edu Department of Mathematics UK Agenda Assigning Objects to Identical Positions Denitions Committee Card Hands Coin Toss Counts

More information

CS100: DISCRETE STRUCTURES. Lecture 8 Counting - CH6

CS100: DISCRETE STRUCTURES. Lecture 8 Counting - CH6 CS100: DISCRETE STRUCTURES Lecture 8 Counting - CH6 Lecture Overview 2 6.1 The Basics of Counting: THE PRODUCT RULE THE SUM RULE THE SUBTRACTION RULE THE DIVISION RULE 6.2 The Pigeonhole Principle. 6.3

More information

Course Learning Outcomes for Unit V

Course Learning Outcomes for Unit V UNIT V STUDY GUIDE Counting Reading Assignment See information below. Key Terms 1. Combination 2. Fundamental counting principle 3. Listing 4. Permutation 5. Tree diagrams Course Learning Outcomes for

More information

Elementary Combinatorics

Elementary Combinatorics 184 DISCRETE MATHEMATICAL STRUCTURES 7 Elementary Combinatorics 7.1 INTRODUCTION Combinatorics deals with counting and enumeration of specified objects, patterns or designs. Techniques of counting are

More information

Counting Things. Tom Davis March 17, 2006

Counting Things. Tom Davis   March 17, 2006 Counting Things Tom Davis tomrdavis@earthlink.net http://www.geometer.org/mathcircles March 17, 2006 Abstract We present here various strategies for counting things. Usually, the things are patterns, or

More information

W = {Carrie (U)nderwood, Kelly (C)larkson, Chris (D)aughtry, Fantasia (B)arrino, and Clay (A)iken}

W = {Carrie (U)nderwood, Kelly (C)larkson, Chris (D)aughtry, Fantasia (B)arrino, and Clay (A)iken} UNIT V STUDY GUIDE Counting Course Learning Outcomes for Unit V Upon completion of this unit, students should be able to: 1. Apply mathematical principles used in real-world situations. 1.1 Draw tree diagrams

More information

Counting. Chapter 6. With Question/Answer Animations

Counting. Chapter 6. With Question/Answer Animations . All rights reserved. Authorized only for instructor use in the classroom. No reproduction or further distribution permitted without the prior written consent of McGraw-Hill Education. Counting Chapter

More information

Organization in Mathematics

Organization in Mathematics Organization in Mathematics Tom Davis tomrdavis@earthlink.net http://www.geometer.org/mathcircles November 17, 2015 1 Introduction When faced with a difficult mathematical problem, one good strategy is

More information

Discrete Structures Lecture Permutations and Combinations

Discrete Structures Lecture Permutations and Combinations Introduction Good morning. Many counting problems can be solved by finding the number of ways to arrange a specified number of distinct elements of a set of a particular size, where the order of these

More information

chapter 2 COMBINATORICS 2.1 Basic Counting Techniques The Rule of Products GOALS WHAT IS COMBINATORICS?

chapter 2 COMBINATORICS 2.1 Basic Counting Techniques The Rule of Products GOALS WHAT IS COMBINATORICS? chapter 2 COMBINATORICS GOALS Throughout this book we will be counting things. In this chapter we will outline some of the tools that will help us count. Counting occurs not only in highly sophisticated

More information

Triangle Similarity Bundle

Triangle Similarity Bundle Triangle Similarity Bundle 2012/2014Caryn White 1 Triangle Similarity Bundle By Caryn White Table of Contents Triangle Similarity Bundle... 2 Copy Right Informations:... 3 Triangle Similarity Foldable...

More information

NINJA CHALLENGE INSTRUCTIONS CONTENTS

NINJA CHALLENGE INSTRUCTIONS CONTENTS 6+ COMPLIANCE WITH FCC REGULATIONS (VALID IN U.S. ONLY) This device complies with part 15 of the FCC Rules. Operation is subject to the following two conditions: (1) This device may not cause harmful interference,

More information

Exercises Exercises. 1. List all the permutations of {a, b, c}. 2. How many different permutations are there of the set {a, b, c, d, e, f, g}?

Exercises Exercises. 1. List all the permutations of {a, b, c}. 2. How many different permutations are there of the set {a, b, c, d, e, f, g}? Exercises Exercises 1. List all the permutations of {a, b, c}. 2. How many different permutations are there of the set {a, b, c, d, e, f, g}? 3. How many permutations of {a, b, c, d, e, f, g} end with

More information

CIS 2033 Lecture 6, Spring 2017

CIS 2033 Lecture 6, Spring 2017 CIS 2033 Lecture 6, Spring 2017 Instructor: David Dobor February 2, 2017 In this lecture, we introduce the basic principle of counting, use it to count subsets, permutations, combinations, and partitions,

More information

Poker: Probabilities of the Various Hands

Poker: Probabilities of the Various Hands Poker: Probabilities of the Various Hands 22 February 2012 Poker II 22 February 2012 1/27 Some Review from Monday There are 4 suits and 13 values. The suits are Spades Hearts Diamonds Clubs There are 13

More information

Combinational Mathematics - I

Combinational Mathematics - I Combinational Mathematics - I Jon T. Butler Naval Postgraduate School, Monterey, CA, USA We are here I live here Meiji University 10:50-12:30 September 28, 2018 J. T. Butler Combinatorial Mathematics I

More information

Section Summary. Permutations Combinations Combinatorial Proofs

Section Summary. Permutations Combinations Combinatorial Proofs Section 6.3 Section Summary Permutations Combinations Combinatorial Proofs Permutations Definition: A permutation of a set of distinct objects is an ordered arrangement of these objects. An ordered arrangement

More information

Unit 10 Arcs and Angles of Circles

Unit 10 Arcs and Angles of Circles Lesson 1: Thales Theorem Opening Exercise Vocabulary Unit 10 Arcs and Angles of Circles Draw a diagram for each of the vocabulary words. Definition Circle The set of all points equidistant from a given

More information

DISCRETE STRUCTURES COUNTING

DISCRETE STRUCTURES COUNTING DISCRETE STRUCTURES COUNTING LECTURE2 The Pigeonhole Principle The generalized pigeonhole principle: If N objects are placed into k boxes, then there is at least one box containing at least N/k of the

More information

Unit 5 Radical Functions & Combinatorics

Unit 5 Radical Functions & Combinatorics 1 Graph of y Unit 5 Radical Functions & Combinatorics x: Characteristics: Ex) Use your knowledge of the graph of y x and transformations to sketch the graph of each of the following. a) y x 5 3 b) f (

More information

JIGSAW ACTIVITY, TASK # Make sure your answer in written in the correct order. Highest powers of x should come first, down to the lowest powers.

JIGSAW ACTIVITY, TASK # Make sure your answer in written in the correct order. Highest powers of x should come first, down to the lowest powers. JIGSAW ACTIVITY, TASK #1 Your job is to multiply and find all the terms in ( 1) Recall that this means ( + 1)( + 1)( + 1)( + 1) Start by multiplying: ( + 1)( + 1) x x x x. x. + 4 x x. Write your answer

More information

Solutions of problems for grade R5

Solutions of problems for grade R5 International Mathematical Olympiad Formula of Unity / The Third Millennium Year 016/017. Round Solutions of problems for grade R5 1. Paul is drawing points on a sheet of squared paper, at intersections

More information

6/24/14. The Poker Manipulation. The Counting Principle. MAFS.912.S-IC.1: Understand and evaluate random processes underlying statistical experiments

6/24/14. The Poker Manipulation. The Counting Principle. MAFS.912.S-IC.1: Understand and evaluate random processes underlying statistical experiments The Poker Manipulation Unit 5 Probability 6/24/14 Algebra 1 Ins1tute 1 6/24/14 Algebra 1 Ins1tute 2 MAFS. 7.SP.3: Investigate chance processes and develop, use, and evaluate probability models MAFS. 7.SP.3:

More information

Math 166: Topics in Contemporary Mathematics II

Math 166: Topics in Contemporary Mathematics II Math 166: Topics in Contemporary Mathematics II Xin Ma Texas A&M University September 30, 2017 Xin Ma (TAMU) Math 166 September 30, 2017 1 / 11 Last Time Factorials For any natural number n, we define

More information

Permutations And Combinations Questions Answers

Permutations And Combinations Questions Answers We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with permutations and combinations

More information

Combinatorial Choreography

Combinatorial Choreography Bridges 2012: Mathematics, Music, Art, Architecture, Culture Combinatorial Choreography Tom Verhoeff Department of Mathematics and Computer Science Eindhoven University of Technology Den Dolech 2, 5612

More information

LAMC Junior Circle February 3, Oleg Gleizer. Warm-up

LAMC Junior Circle February 3, Oleg Gleizer. Warm-up LAMC Junior Circle February 3, 2013 Oleg Gleizer oleg1140@gmail.com Warm-up Problem 1 Compute the following. 2 3 ( 4) + 6 2 Problem 2 Can the value of a fraction increase, if we add one to the numerator

More information

aabb abab abba baab baba bbaa permutations of these. But, there is a lot of duplicity in this list, each distinct word (such as 6! 3!2!1!

aabb abab abba baab baba bbaa permutations of these. But, there is a lot of duplicity in this list, each distinct word (such as 6! 3!2!1! Introduction to COMBINATORICS In how many ways (permutations) can we arrange n distinct objects in a row?answer: n (n ) (n )... def. = n! EXAMPLE (permuting objects): What is the number of different permutations

More information

Grade 6 Math Circles March 9, 2011 Combinations

Grade 6 Math Circles March 9, 2011 Combinations 1 University of Waterloo Faculty of Mathematics Centre for Education in Mathematics and Computing Grade 6 Math Circles March 9, 2011 Combinations Review 1. Evaluate 6! 6 5 3 2 1 = 720 2. Evaluate 5! 7

More information

Strings. A string is a list of symbols in a particular order.

Strings. A string is a list of symbols in a particular order. Ihor Stasyuk Strings A string is a list of symbols in a particular order. Strings A string is a list of symbols in a particular order. Examples: 1 3 0 4 1-12 is a string of integers. X Q R A X P T is a

More information

Fundamental Counting Principle

Fundamental Counting Principle Lesson 88 Probability with Combinatorics HL2 Math - Santowski Fundamental Counting Principle Fundamental Counting Principle can be used determine the number of possible outcomes when there are two or more

More information

Chapter 10A. a) How many labels for Product A are required? Solution: ABC ACB BCA BAC CAB CBA. There are 6 different possible labels.

Chapter 10A. a) How many labels for Product A are required? Solution: ABC ACB BCA BAC CAB CBA. There are 6 different possible labels. Chapter 10A The Addition rule: If there are n ways of performing operation A and m ways of performing operation B, then there are n + m ways of performing A or B. Note: In this case or means to add. Eg.

More information

Permutations and Combinations. Quantitative Aptitude & Business Statistics

Permutations and Combinations. Quantitative Aptitude & Business Statistics Permutations and Combinations Statistics The Fundamental Principle of If there are Multiplication n 1 ways of doing one operation, n 2 ways of doing a second operation, n 3 ways of doing a third operation,

More information

n! = n(n 1)(n 2) 3 2 1

n! = n(n 1)(n 2) 3 2 1 A Counting A.1 First principles If the sample space Ω is finite and the outomes are equally likely, then the probability measure is given by P(E) = E / Ω where E denotes the number of outcomes in the event

More information

Chapter 2. Permutations and Combinations

Chapter 2. Permutations and Combinations 2. Permutations and Combinations Chapter 2. Permutations and Combinations In this chapter, we define sets and count the objects in them. Example Let S be the set of students in this classroom today. Find

More information

Solutions to Problem Set 7

Solutions to Problem Set 7 Massachusetts Institute of Technology 6.4J/8.6J, Fall 5: Mathematics for Computer Science November 9 Prof. Albert R. Meyer and Prof. Ronitt Rubinfeld revised November 3, 5, 3 minutes Solutions to Problem

More information

10.2.notebook. February 24, A standard deck of 52 playing cards has 4 suits with 13 different cards in each suit.

10.2.notebook. February 24, A standard deck of 52 playing cards has 4 suits with 13 different cards in each suit. Section 10.2 It is not always important to count all of the different orders that a group of objects can be arranged. A combination is a selection of r objects from a group of n objects where the order

More information

Discrete Structures for Computer Science

Discrete Structures for Computer Science Discrete Structures for Computer Science William Garrison bill@cs.pitt.edu 6311 Sennott Square Lecture #22: Generalized Permutations and Combinations Based on materials developed by Dr. Adam Lee Counting

More information

Combinational Mathematics Part 1

Combinational Mathematics Part 1 j1 Combinational Mathematics Part 1 Jon T. Butler Naval Postgraduate School, Monterey, CA, USA Meiji Univ. 10:30-12:00 October 9, 2015 J. T. Butler Combinatorial Mathematics Part 1 1 Monterey Coast Pacific

More information

Jong C. Park Computer Science Division, KAIST

Jong C. Park Computer Science Division, KAIST Jong C. Park Computer Science Division, KAIST Today s Topics Basic Principles Permutations and Combinations Algorithms for Generating Permutations Generalized Permutations and Combinations Binomial Coefficients

More information

MATH 2420 Discrete Mathematics Lecture notes

MATH 2420 Discrete Mathematics Lecture notes MATH 2420 Discrete Mathematics Lecture notes Series and Sequences Objectives: Introduction. Find the explicit formula for a sequence. 2. Be able to do calculations involving factorial, summation and product

More information

Math 1111 Math Exam Study Guide

Math 1111 Math Exam Study Guide Math 1111 Math Exam Study Guide The math exam will cover the mathematical concepts and techniques we ve explored this semester. The exam will not involve any codebreaking, although some questions on the

More information

Poker: Probabilities of the Various Hands

Poker: Probabilities of the Various Hands Poker: Probabilities of the Various Hands 19 February 2014 Poker II 19 February 2014 1/27 Some Review from Monday There are 4 suits and 13 values. The suits are Spades Hearts Diamonds Clubs There are 13

More information

CS1802 Week 3: Counting Next Week : QUIZ 1 (30 min)

CS1802 Week 3: Counting Next Week : QUIZ 1 (30 min) CS1802 Discrete Structures Recitation Fall 2018 September 25-26, 2018 CS1802 Week 3: Counting Next Week : QUIZ 1 (30 min) Permutations and Combinations i. Evaluate the following expressions. 1. P(10, 4)

More information

Lecture 18 - Counting

Lecture 18 - Counting Lecture 18 - Counting 6.0 - April, 003 One of the most common mathematical problems in computer science is counting the number of elements in a set. This is often the core difficulty in determining a program

More information

Sec$on Summary. Permutations Combinations Combinatorial Proofs

Sec$on Summary. Permutations Combinations Combinatorial Proofs Section 6.3 Sec$on Summary Permutations Combinations Combinatorial Proofs 2 Coun$ng ordered arrangements Ex: How many ways can we select 3 students from a group of 5 students to stand in line for a picture?

More information

CS1800: Intro to Probability. Professor Kevin Gold

CS1800: Intro to Probability. Professor Kevin Gold CS1800: Intro to Probability Professor Kevin Gold Probability Deals Rationally With an Uncertain World Using probabilities is the only rational way to deal with uncertainty De Finetti: If you disagree,

More information

Counting Methods and Probability

Counting Methods and Probability CHAPTER Counting Methods and Probability Many good basketball players can make 90% of their free throws. However, the likelihood of a player making several free throws in a row will be less than 90%. You

More information

The Fundamental Counting Principle & Permutations

The Fundamental Counting Principle & Permutations The Fundamental Counting Principle & Permutations POD: You have 7 boxes and 10 balls. You put the balls into the boxes. How many boxes have more than one ball? Why do you use a fundamental counting principal?

More information

Permutations and Combinations Section

Permutations and Combinations Section A B I L E N E C H R I S T I A N U N I V E R S I T Y Department of Mathematics Permutations and Combinations Section 13.3-13.4 Dr. John Ehrke Department of Mathematics Fall 2012 Permutations A permutation

More information

Math 3012 Applied Combinatorics Lecture 2

Math 3012 Applied Combinatorics Lecture 2 August 20, 2015 Math 3012 Applied Combinatorics Lecture 2 William T. Trotter trotter@math.gatech.edu The Road Ahead Alert The next two to three lectures will be an integrated approach to material from

More information

Section : Combinations and Permutations

Section : Combinations and Permutations Section 11.1-11.2: Combinations and Permutations Diana Pell A construction crew has three members. A team of two must be chosen for a particular job. In how many ways can the team be chosen? How many words

More information

MATH CIRCLE, 10/13/2018

MATH CIRCLE, 10/13/2018 MATH CIRCLE, 10/13/2018 LARGE SOLUTIONS 1. Write out row 8 of Pascal s triangle. Solution. 1 8 28 56 70 56 28 8 1. 2. Write out all the different ways you can choose three letters from the set {a, b, c,

More information

Week 1: Probability models and counting

Week 1: Probability models and counting Week 1: Probability models and counting Part 1: Probability model Probability theory is the mathematical toolbox to describe phenomena or experiments where randomness occur. To have a probability model

More information

MATH 22. Lecture B: 9/4/2003 COUNTING. I counted two and seventy stenches, All well-defined, and several stinks.

MATH 22. Lecture B: 9/4/2003 COUNTING. I counted two and seventy stenches, All well-defined, and several stinks. MATH 22 Lecture B: 9/4/2003 COUNTING How do I love thee? Let me count the ways. Elizabeth Barrett Browning, Sonnets from the Portuguese, XLIII I counted two and seventy stenches, All well-defined, and

More information

Day 1 Counting Techniques

Day 1 Counting Techniques Day 1 Counting Techniques Packet p. 1-2 Day 1 Fundamental Counting Principle Other Counting Techniques Notes p. 1 I. Introduction Probability Defined: What do you know about probability? Notes p. 1 I.

More information

Objectives: Permutations. Fundamental Counting Principle. Fundamental Counting Principle. Fundamental Counting Principle

Objectives: Permutations. Fundamental Counting Principle. Fundamental Counting Principle. Fundamental Counting Principle and Objectives:! apply fundamental counting principle! compute permutations! compute combinations HL2 Math - Santowski! distinguish permutations vs combinations can be used determine the number of possible

More information

Permutations. and. Combinations

Permutations. and. Combinations Permutations and Combinations Fundamental Counting Principle Fundamental Counting Principle states that if an event has m possible outcomes and another independent event has n possible outcomes, then there

More information

PS 3.8 Probability Concepts Permutations & Combinations

PS 3.8 Probability Concepts Permutations & Combinations BIG PICTURE of this UNIT: How can we visualize events and outcomes when considering probability events? How can we count outcomes in probability events? How can we calculate probabilities, given different

More information

POKER (AN INTRODUCTION TO COUNTING)

POKER (AN INTRODUCTION TO COUNTING) POKER (AN INTRODUCTION TO COUNTING) LAMC INTERMEDIATE GROUP - 10/27/13 If you want to be a succesful poker player the first thing you need to do is learn combinatorics! Today we are going to count poker

More information

CISC 1400 Discrete Structures

CISC 1400 Discrete Structures CISC 1400 Discrete Structures Chapter 6 Counting CISC1400 Yanjun Li 1 1 New York Lottery New York Mega-million Jackpot Pick 5 numbers from 1 56, plus a mega ball number from 1 46, you could win biggest

More information

CPCS 222 Discrete Structures I Counting

CPCS 222 Discrete Structures I Counting King ABDUL AZIZ University Faculty Of Computing and Information Technology CPCS 222 Discrete Structures I Counting Dr. Eng. Farag Elnagahy farahelnagahy@hotmail.com Office Phone: 67967 The Basics of counting

More information

Math Steven Noble. November 22nd. Steven Noble Math 3790

Math Steven Noble. November 22nd. Steven Noble Math 3790 Math 3790 Steven Noble November 22nd Basic ideas of combinations and permutations Simple Addition. If there are a varieties of soup and b varieties of salad then there are a + b possible ways to order

More information

Counting (Enumerative Combinatorics) X. Zhang, Fordham Univ.

Counting (Enumerative Combinatorics) X. Zhang, Fordham Univ. Counting (Enumerative Combinatorics) X. Zhang, Fordham Univ. 1 Chance of winning?! What s the chances of winning New York Megamillion Jackpot!! just pick 5 numbers from 1 to 56, plus a mega ball number

More information

With Question/Answer Animations. Chapter 6

With Question/Answer Animations. Chapter 6 With Question/Answer Animations Chapter 6 Chapter Summary The Basics of Counting The Pigeonhole Principle Permutations and Combinations Binomial Coefficients and Identities Generalized Permutations and

More information

Problems from 9th edition of Probability and Statistical Inference by Hogg, Tanis and Zimmerman:

Problems from 9th edition of Probability and Statistical Inference by Hogg, Tanis and Zimmerman: Math 22 Fall 2017 Homework 2 Drew Armstrong Problems from 9th edition of Probability and Statistical Inference by Hogg, Tanis and Zimmerman: Section 1.2, Exercises 5, 7, 13, 16. Section 1.3, Exercises,

More information

Honors Precalculus Chapter 9 Summary Basic Combinatorics

Honors Precalculus Chapter 9 Summary Basic Combinatorics Honors Precalculus Chapter 9 Summary Basic Combinatorics A. Factorial: n! means 0! = Why? B. Counting principle: 1. How many different ways can a license plate be formed a) if 7 letters are used and each

More information

Simple Counting Problems

Simple Counting Problems Appendix F Counting Principles F1 Appendix F Counting Principles What You Should Learn 1 Count the number of ways an event can occur. 2 Determine the number of ways two or three events can occur using

More information

Learning Objectives for Section 7.4 Permutations and Combinations. 7.4 Permutations and Combinations

Learning Objectives for Section 7.4 Permutations and Combinations. 7.4 Permutations and Combinations Learning Objectives for Section 7.4 Permutations and Combinations The student will be able to set up and compute factorials. The student will be able to apply and calculate permutations. The student will

More information

3 ky. t x 1) 1/3, -1/2 2) = 140 4) 74 units 5) a) 2400 b) $12 c) 96 students. 6) a) y = 1.10x x b) points c) 1984, 2003

3 ky. t x 1) 1/3, -1/2 2) = 140 4) 74 units 5) a) 2400 b) $12 c) 96 students. 6) a) y = 1.10x x b) points c) 1984, 2003 1) 1/3, -1/2 2) 3.8039 3) m SRQ < = 140 4) 74 units 5) a) 2400 b) $12 c) 96 students t x 6) a) y = 1.10x 2 30.49x + 890.03 b) 790.61 points c) 1984, 2003 7) a) 4 3 b) 3ky 3y 3 3 5 7 4 4 3 ky 8) 10) a)

More information