permutation function

double permutation(
  1. num n,
  2. num m
)

Returns the permutations based on the gamma function.

Implementation

double permutation(num n, num m) => factorial(n) / factorial(n - m);