๐ข Permutation Calculator
Calculate P(n,r) = n! / (n-r)!
Related Calculators
Permutation Calculator Guide
The Permutation Calculator computes the number of ways to arrange r elements from n distinct elements in order, denoted P(n,r) or A(n,r). Unlike combinations, permutations consider the order of elements โ (A,B) and (B,A) are treated as two different permutations.
Permutation problems are very common in daily life: queuing order, password combinations, tournament scheduling, seat assignments, etc. This tool supports the range 0 to 170, with results automatically formatted for readability (large numbers use scientific notation).
Permutation Formula
ใBasic FormulaใP(n,r) = n! / (n-r)! = n ร (n-1) ร (n-2) ร ... ร (n-r+1) ใSpecial Casesใ P(n,n) = n! (Full permutation) P(n,0) = 1 (Empty permutation) P(n,1) = n ใRelationship with CombinationใP(n,r) = C(n,r) ร r! Permutation = Combination ร Full permutation of r elements
Practical Examples
Important Notes
Application Scenarios
- - Password security: Evaluate password strength, calculate brute force combination space
- - Tournament scheduling: Round-robin and elimination match arrangements
- - Lottery draws: Sequential drawing arrangement counting
- - Shift scheduling: Different employee rotation plan counts
- - Phone numbers: Area code + number valid combination analysis
Types of Permutation Problems
Permutation problems can be classified into: (1) Linear permutation โ arranged in a line, the most common form; (2) Circular permutation โ arranged in a circle, requires fixing a reference point; (3) Permutation with repeated elements โ divide by factorials of repetition counts; (4) Derangement โ permutations where no element appears in its original position.
For example, the full permutation of "MISSISSIPPI" (11 letters) is 11!/(4!ร4!ร2!) = 34,650, because M appears 1 time, I appears 4 times, S appears 4 times, and P appears 2 times. These are advanced applications of permutation calculation.