Find the number of combinations — ways to choose r items from n when order does not matter. Enter n and r.
Usage Tip
Choosing 3 from 10 is the same as leaving out 7 from 10 — that is why C(10,3) equals C(10,7).
Order does not matter
They are permutations divided by the number of orderings of each group.
The matching permutation count is shown for comparison.
C(n, r) equals C(n, n − r).
