Permutation is the act of re-arranging a set of objects (Primarily numbers, but also applicable with about anything), to every feasible sub-set of that particular set.
{0, 1, 2} = (0, 1, 2), (0, 2, 1), (1, 0, 2), (1, 2, 0), (2, 0, 1), (2, 1, 0);
Number of Permutations = n! where "n" is the length of a particular set.
Permutation is the act of re-arranging a set of objects (Primarily numbers, but also applicable with about anything), to every feasible sub-set of that particular set.
{0, 1, 2} = (0, 1, 2), (0, 2, 1), (1, 0, 2), (1, 2, 0), (2, 0, 1), (2, 1, 0);
Number of Permutations = n! where "n" is the length of a particular set.