The Permutation Calculator computes P(n,r) — the number of ordered arrangements of r items chosen from n items. Uses exact BigInt arithmetic for precise results on large values. Shows the expanding product n x (n-1) x ... x (n-r+1), the step-by-step factorial cancellation, a side-by-side comparison ...
ARRANGE r ITEMS FROM n ITEMS (ORDER MATTERS)
n (total)
r (arrange)
P(10, 3) = ORDERED ARRANGEMENTS
720
= 10! / 7! = 10 × 9 × 8
Permutations P(10,3)
720
order matters — this result
Combinations C(10,3)
120
order ignored
Ratio P / C = r!
6
3! arrangements per group
Probability (1/nPr)
0.00138889
of one specific arrangement
STEP-BY-STEP
n = 10, r = 3
P(n,r) = n! / (n−r)!
P(10,3) = 10! / 7!
= 10 × 9 × 8 = 720
Comparison: C(10,3) = 120
P(10,3) / C(10,3) = 6 = 3!
QUICK EXAMPLES
Choices available for each position slot
PERMUTATION vs COMBINATION
| Property | Permutation P(n,r) | Combination C(n,r) |
|---|---|---|
| Order matters | Yes | No |
| Formula | n!/(n-r)! | n!/(r!(n-r)!) |
| Result | 720 | 120 |
| Ratio P/C | 3! = 6 | 1 |
| Use case | Rankings, codes, order | Groups, teams, selection |
WHAT THIS MEANS
There are 720 ways to arrange 3 items chosen from 10 in order.
| NAME | FORMULA | DESCRIPTION |
|---|---|---|
| Permutation nPr | P(n,r) = n! / (n-r)! | Ordered arrangements of r items from n |
| Expanded product | P(n,r) = n x (n-1) x ... x (n-r+1) | Multiply r consecutive integers down from n |
| Combination nCr | C(n,r) = n! / (r! x (n-r)!) | Unordered selections — order does not matter |
| Relationship | P(n,r) = C(n,r) x r! | Permutations = combinations x arrangements of r chosen items |
| Special P(n,n) | P(n,n) = n! | All n items arranged: factorial of n |
| Special P(n,0) | P(n,0) = 1 | Arranging zero items has exactly one way |
| Special P(n,1) | P(n,1) = n | Arranging one item has n choices |
| Probability | p = 1 / P(n,r) | Probability of guessing one specific arrangement |
Enter n — the total number of items. For example, n=26 for the alphabet or n=52 for a deck of cards.
Enter r — how many items you are arranging. Order matters: ABC and BAC are two different permutations.
P(n,r) appears instantly as an exact integer. The arrangement diagram shows the number of choices for each position slot.
Compare with C(n,r) in the results — permutations always equal or exceed combinations. The ratio P(n,r)/C(n,r) = r!, the number of ways to arrange the chosen items.
Check special cases: P(n,0)=1 (one way to arrange nothing), P(n,1)=n, P(n,n)=n! (all items in every order).
P(10,3): n=10, r=3. P(10,3)=10!/7!=10x9x8=720. C(10,3)=120. Ratio 720/120=6=3!. Probability=1/720=0.00139. P(52,3)=52x51x50=132,600 ordered 3-card hands. P(5,5)=5!=120 (all 5 items). P(26,4)=26x25x24x23=358,800 letter codes.
Mean Median Mode Calculator
Calculate instantly →
Probability Calculator
Calculate instantly →
Standard Deviation Calculator
Calculate instantly →
Combination Calculator (nCr)
Calculate instantly →
Grade Calculator
Calculate instantly →
GPA Calculator
Calculate instantly →
Final Grade Needed Calculator
Calculate instantly →
Test Grade Calculator
Calculate instantly →
Last updated: April 29, 2026 · Formula verified by EagleCalculator team · Eagle-eyed accuracy for every calculation.