Permutation & Combination
Calculate permutations & combinations easily
Formula:
Result:
Calculation Steps:
Explanation:
Permutations vs Combinations
Permutations (nPr):
Order matters
Arrangements where order is important
Formulas:
Without repetition:
nPr = n! / (n - r)!
With repetition:
nPr = n^r
Example:
Picking president, vice-president, secretary from 5 people:
5P3 = 60 different arrangements
5P3 = 60 different arrangements
Combinations (nCr):
Order doesn't matter
Selections where order is not important
Formulas:
Without repetition:
nCr = n! / (r! × (n - r)!)
With repetition:
nCr = (n + r - 1)! / (r! × (n - 1)!)
Example:
Picking 3 team members from 5 people:
5C3 = 10 different teams
5C3 = 10 different teams