Combinations & Permutations

Permutations without Repetition

Permutations without repetition refers to the number of arrangements formed by ordering r elements from a pool of n elements such that there are no repetitions.

Formula

nPr=n!(nr)!

Example

There are 12, 3-letter words that can be generated from the letters of the word FART:

FA, AF, FR, RF, FT, TF, AR, RA, AT, TA, RT, TR

4P2=4!(42)!=12

Permutations with Repetition

Permutations with repetition refers to the number of arrangements formed by ordering r elements from a pool of n elements such that there may be repetitions.

Formula

nr

Example

There are 8 possible arrangements of 1s and 0s in a 3-digit binary number:

000, 001, 010, 011, 100, 101, 110, 111.

23=8

Combinations without Repetition

Combinations without repetition refers to the number of ways to choose r elements from a pool of n elements such that there are no repetitions.

Formula

nCr=(nr)=n!r!(nr)!

Example

There are 4, 3-letter combinations that can be generated from the letters of the word FART:

FAR, FRT, FAT, ART.

4C3=4!3!(43)!=4

Additional Identities

(nr)=(n1r1)+(n1r)(nr)=(nnr)

Combinations with Repetition

Combinations with repetition refers to the number of ways to choose r elements from a pool of n elements such that there may be repetitions.

Formula

((nr))=(n+r1r)=(n+r1)!r!(n1)!

Example

There are 10 ways to place 2 balls into 4 different boxes:

4 ways where both balls are in the same box, 6 other ways to choose 2 different boxes from 4.

((42))=5!2!3!=10

Binomial Theorem

Binomial theorem describes the algebraic expansion of powers of a binomial of the form (x+y)n.

Formula

(x+y)n=k=0n(nk)xkynk

Multinomial Coefficients

Multinomial coefficients are the coefficients in the terms of expansion of a power of a multinomial. It is the number of different divisions possible if n distinct items are to be divided into r distinct groups of respective sizes n1,n2,n3,...,nr, where k=1rnk=n.

Formula

(nn1,n2,n3,...,nr)=n!n1!n2!n3!...nr!

Multinomial Theorem

Multinomial theorem describes the algebraic expansion of powers of a multinomial of the form (x1+x2+x3+...+xr)n.

Formula

(x1+x2+x3+...+xr)n=n1+n2+...+nr=n(nn1,n2,n3,...,nr)k=1rxknk