Permutations Calculator (nPr)
Calculate the number of ways to arrange r items from n total items
๐ Examples, Rules & Help
โกQuick Examples of Permutations
๐Permutations Formula
Where n = total number of items, r = number of items to arrange, and ! represents factorial
๐How to Calculate Permutations
How to Calculate
Step 1: Identify n (total items) and r (items to arrange)
Step 2: Calculate n! (n factorial)
Step 3: Calculate (n-r)! ((n-r) factorial)
Step 4: Apply formula: P(n,r) = n! รท (n-r)!
Alternative: Multiply n ร (n-1) ร (n-2) ร ... ร (n-r+1)
Example: Arrange 3 items from 5 total (P(5,3))
โข n = 5, r = 3
โข Method 1: n! รท (n-r)! = 5! รท 2! = 120 รท 2 = 60
โข Method 2: 5 ร 4 ร 3 = 60
โข Result: 60 different arrangements
Understanding Permutations
Permutations count the number of ways to arrange r items from n total items
Key property: Order matters!
Example: Arranging 2 people from (Alice, Bob, Carol) gives 6 permutations: AB, AC, BA, BC, CA, CB
Formula Application
The permutation formula accounts for all possible arrangements
Why n!? Total arrangements of all n items
Why divide by (n-r)!? Remove arrangements of items we don't select
Alternative: n ร (n-1) ร (n-2) ร ... ร (n-r+1)
Special Cases
nP0 = 1: One way to arrange nothing
nPn = n!: All possible arrangements of n items
nP1 = n: n ways to choose first position
Relationship: nPr = nCr ร r! (permutations = combinations ร arrangements)
๐Real-World Applications
โFrequently Asked Questions
How is permutation different from combination?
Why is nPr = nCr ร r!?
When do I use permutations vs combinations?
What's the maximum value I can calculate?
๐ฏCommon Use Cases
๐ Competitions & Rankings
- โข Race finishing positions
- โข Contest ranking systems
- โข Tournament seeding arrangements
- โข Award ceremony orders
๐ Security & Access
- โข Password character arrangements
- โข PIN code possibilities
- โข Access sequence protocols
- โข Lock combination orders
๐ Organization & Planning
- โข Meeting agenda ordering
- โข Task execution sequences
- โข Resource allocation priorities
- โข Event timeline arrangements
๐จ Creative & Design
- โข Color sequence arrangements
- โข Layout element ordering
- โข Performance choreography
- โข Display arrangement options