Loading Calculator...
Please wait a moment
Please wait a moment
Calculate the number of ways to arrange r items from n items where order matters.
In permutations, order matters (ABC is different from CBA). In combinations, order doesn't matter (ABC is the same as CBA). Permutations always give a larger result: P(n,r) = C(n,r) × r!
P(n, n) = n! This represents all possible arrangements of n items. For example, 5 people can be arranged in a row in 5! = 120 ways.