MATH 302 Lecture 22

From Notes
Jump to navigation Jump to search

« previous | Wednesday, November 16, 2011 | next »


Multinomial coefficients

Answers the question: How many ways are there to put labeled objects into labeled containers?

There are objects in container 1. Thre are objects in container 2. (etc, etc.)

This is such that .

Example

How many ways are there to deal 5 cards to 4 players (from a deck of 52 cards)?

Each of the 4 players acts like a container that will receive 5 objects (cards). There is another "container": the remaining cards in the deck, which will have 32 cards:


Partititons

Answers the questions: How many ways are there to break into parts?

No formula to do this, but here's an example:

How many ways are there to put 6 identical balls into 4 identical boxes (unlabeled → unlabeled)

6      
5 1    
4 2    
4 1 1  
3 3    
3 2 1  
3 1 1 1
2 2 2  
2 2 1 1

Notice that in all cases, it is the same as writing the sum of 4 integers that equal 6 in decreasing order.


Cases for Objects to Boxes

Distributing objects into boxes

labeled () → labeled ()
multinomial coefficients:
labeled () → unlabeled ()
Stirling numbers:
unlabeled () → labeled ()
r-Combination with repetition
unlabeled () → unlabeled ()
partitions

Matrices

Zero-One matrices (each cell is either 0 or 1)

Join Method

Perform logical OR with each corresponding cell.

Meet Method

Perform logical AND with each corresponding cell.