Compute the combinations 10C4
Count the number of unordered selections of 4 items from 10.
Solution
- Given n = 10, r = 4
- Permutations nPr = n! / (n − r)! = 10! / 6! = 5040
- Combinations nCr = n! / (r!·(n − r)!) = nPr / r! = 5040 / 24 = 210
- Factorial n! = 3628800
Try a similar problem yourself
Use the Permutations & Combinations to solve a similar problem with your own values.
Open the solver