Combination calculator
Enter n and r.
Result
C(5, 2) = 10.
Example
Count unordered selections of items taken r at a time.
C(5, 2) = 10.
Processed locally in your browser.
Methodology
C(n, r) = n! / (r! × (n − r)!), where order does not matter.
Related tools