Permutations

Revision as of 20:29, 13 April 2017 by Lchrisman (talk | contribs) (See also Partitions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Permutations(k, n)

The number of possible permutations of «k» items taken from a bucket of «n» items.

Library

Advanced math

Example

Permutations(2, 4) → 12

They are: {1, 2}, {1, 3}, {1, 4}, {2, 1}, {2, 3}, {2, 4}, {3, 1}, {3, 2}, {3, 4}, {4, 1}, {4, 2}, {4, 3}

See Also

Comments


You are not allowed to post comments.