erf(x) Returns the value of erf(x) where 'erf' is the "error function".
exp_dist(x) Returns a random number from 0 to x with an exponential ditribution.
factorial(number) Returns the factorial of the given number.
combination(set,subset) Returns the number of unique subsets created from all combinations of the given number of elements.
permutation(set,subset) Returns the number of unique subsets created from all permutations of the given number of elements in which the order of the chosen elements is significant.
roll_dice(num,sides) Returns the sum of the given number of rolls of dice with the given number of sides.
exact_gauss(mean, deviation) Returns a pseudo-random number with an exact Gaussian distribution.
gauss() Returns a pseudo-random number selected with approximate Gaussian distribution between -1 and 1.