How many arrangements are possible?
Use this when order matters. A–B and B–A count as different results.
P(n, r)720
P(10, 3) exact possibilities
The formula
P(n, r) = n! ÷ (n − r)!
Every result uses distinct items. For repetition, use the main generator and enable repeats.
Generate the arrangements →