Theory 1

In many “games of chance,” it is assumed based on symmetry principles that all outcomes are equally likely. From this assumption we infer a rule for the probability measure P[].

P[A]=|A||S|

In words: the probability of event A is the number of outcomes in A divided by the total number of possible outcomes.

When this formula applies, it is important to be able to count the total outcomes as well as the outcomes that satisfy various conditions.

Permutations

Permutations count the number of ordered lists one can form from a set of items. For a list of r items taken from a total collection of n items, the number of permutations is:

P(n,r)=n!(nr)!

Why is this formula true?

There are n choices for the first item. Then n1 for the second item, after the first has been chosen and removed from the set of possibilities. Then n2 for the third, then …, then nr+1 for the rth item. So the total number of possibilities is the product:

n(n1)(n2)(nr+1)

We can express this with factorials using a technical observation:

n!(nr)!=n(n1)(n2)(nr+1)(nr)(nr1)1n(n1)(n2)(nr+1)(nr)(nr1)1n(n1)(n2)(nr+1)

Combinations

Combinations count the number of subsets (ignoring order) one can form from some items. For a subset of r items taken from a total collection of n items, the number of combinations is:

C(n,r)=(nr)=n!r!(nr)!

This formula can be derived from the formula for permutations.

The set of possible permutations can be partitioned into combinations: each combination determines a subset. By additionally specifying an ordering of the elements in a chosen subset, we obtain a permutation. For a given subset of r elements taken from n items, there are r! ways to determine an ordering of them in a list. Therefore, the number of permutations must be a factor of r! times the number of combinations. (For every combination of size r, there are r! ways to order the items in a list.)

The notation (nr) is also called the binomial coefficient because it provides the coefficient values of a binomial expansion:

(x+y)n=i=1n(ni)xniyi

For example:

(x+y)4=x4+4x3y+6x2y2+4xy3+y4

There are also higher combinations that give multinomial coefficients:

Multinomial coefficient

The general multinomial coefficient is defined by the formula:

(nr1,r2,,rk)=n!r1!r2!rk!

where ri and r1+r2++rk=n.

The multinomial coefficient measures the number of ways to partition n items into subsets with sizes r1,r2,,rk, respectively.

Notice that (53,2)=(53), so we have already defined these values (i.e. with k=2) when we defined binomial coefficients. But when k>2, the formula gives new values. They correspond to the coefficients in multinomial expansions. For example, k=3 gives the coefficients for (x+y+z)n.