notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

RPermutation.md (281B)


      1 # r-Permutations
      2 
      3 TB 6.3
      4 
      5 **Definition:** r-Permutations are permutations that have a lenght of r.
      6 
      7 An important functions is P(n, r) where this denotes the number of r-permutations of a set with a length of n.
      8 
      9 The formula for P(n,r) is as follows:
     10 
     11 $P(n,r) = \frac{n!}{(n-r)!}$.