Skip to content

Counting

Inclusion-Exclusion:

Sums:

|AB|=|A|+|B||AB||ABC|=|A|+|B|+|C||AB||AC||BC|+|ABC|

Permutations with repetition:

Order does not matter

You can select the same over and over.

choosing r of something that has n different types, the permutations are: nn(r times) or nr

for example choosing 10 letters in order (r) from 26 possible letters (n):

nr=2610

Permutations without repetition:

Order matters

No duplicates, we have to reduce the number of available choices each time.

notation: P(n)

a permutation if n distinct elements is an ordering of the n elements There are n * n - 1 * 2 * 1 = n! permutations of n.

r-Permutations:

Order matters

No duplicates, we have to reduce the number of available choices each time.

You only want to select r things (Not all n)

an r-permutation if n distinct elements is an ordering of r out of n elements where 0 < r < n the number P(n, r) of r-permutations of n elements is

n * (n - 1) * ... * (n - r + 1) = n!(nr)!

Combinations:

Selection order does not matter

No duplicates, you can only select an option once.

Notation: C(n, r)

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

Useful formulas:

(n0)=(nn)=0

(nr)=(nnr)

(n+1r)=(nr1)+(nr)

Binomial coefficient:

  • Find the coefficient for xy
  • Pass x, y to the equation and

Sources:

https://www.mathsisfun.com/combinatorics/combinations-permutations.html