Basic Combinatorics

Table of contents
  1. Permutation
    1. Permutation without repetition
    2. Permutation with repetition
  2. Combination
    1. Combination without repetition
    2. Combination with repetition

Permutation

A permutation is an arrangement of objects in a specific order.

Permutation without repetition

If repetition is not allowed, then the number of permutations of $n$ objects taken $r$ at a time is

$$ _nP_r = \frac{n!}{(n-r)!} $$

Permutation with repetition

If repetition is allowed, then the number of permutations of $n$ objects taken $r$ at a time is $n^r$.


Combination

A combination is a selection of objects where order does not matter.

Combination without repetition

If repetition is not allowed, then the number of combinations of $n$ objects taken $r$ at a time is

$$ _nC_r = \frac{n!}{r!(n-r)!} $$

Combination with repetition

If repetition is allowed, then the number of combinations of $n$ objects taken $r$ at a time is

$$ _{r+n-1}C_r = \frac{(r+n-1)!}{r!(n-1)!} $$