Combination Calculator (nCr)
Calculate the number of ways to choose r items from a set of n, where order doesn't matter.
Calculate the number of ways to choose r items from a set of n, where order doesn't matter.
How Combination Calculator (nCr) Works
A combination counts how many distinct groups you can form by picking r items out of n total, without caring about the order you picked them in — computed as n! divided by r! times (n−r)!.
See It In Action
Who Uses Combination Calculator (nCr) and Why
- Working out how many distinct lottery number combinations are possible for a given set of numbers drawn.
- Calculating how many different teams or committees of a certain size can be formed from a larger group.
- Figuring out how many distinct card hands are possible when dealt a fixed number of cards from a deck.
Mistakes to Avoid
- Using this calculator when the order of selection actually matters (like assigning distinct roles or ranking outcomes) — that scenario calls for the Permutation Calculator instead, since combinations treat differently-ordered picks as the same result.
- Entering r greater than n — you can't choose more items than exist in the set, and the calculation isn't meaningful in that case.
- Forgetting that C(n,r) counts groups, not sequences — this matters when deciding whether your real-world problem is really asking for combinations or permutations.
Tips for Best Results
- C(n,r) always equals C(n, n−r) — choosing which r items to include is equivalent to choosing which n−r items to leave out, a useful symmetry for a quick sanity check.
- If your scenario involves any notion of "first," "second," or ranked positions, you likely want the Permutation Calculator instead of this one.
Fixing Common Problems
I'm not sure whether my problem needs combinations or permutations. — Ask whether swapping the order of two selected items would count as a different outcome. If yes, use the Permutation Calculator; if the group is considered the same regardless of order, use this Combination Calculator.
Terms Explained
Combination: A selection of r items from a set of n where the order of selection doesn't matter.
Factorial (n!): The product of all positive integers up to n, used in both the combination and permutation formulas.