Combinations Calculator
A combinations calculator is a mathematical counting utility that computes the number of unique subsets of size r that can be chosen from a larger pool of n distinct elements. In combinations, the selection order is completely ignored. The calculator evaluates combinations using the standard binomial coefficient formula and applies symmetry adjustments to optimize calculation speed and accuracy. It is widely used in algebra, probability theory, lottery designs, card games, and scheduling combinations.
Enter the total number of items n and the number chosen r, and the calculator returns C(n, r), the count of unordered selections (combinations). Uses the multiplicative form for stable calculations.
Quick Answer
Calculate nCr combinations for any pool of items. Enter the pool size and selection count to find the number of unique unordered groups.
How many distinct items you have to choose from. · e.g. 10
Number to select. Cannot exceed n. · e.g. 3
Formula
C(n, r) = n! ÷ (r! × (n − r)!)
Combinations count selections where order does not matter: choosing {A, B, C} is the same as {C, B, A}. Use permutations instead when order matters.
C(10, 3)
120
Order does not matter
Examples
C(10, 3)
120
C(52, 5) (5-card poker hands)
2,598,960
C(20, 10)
184,756
How it works
A combinations calculator counts unordered selections. The closed-form formula uses three factorials, but the calculator uses the equivalent multiplicative form to compute the answer directly, multiplying and dividing one term at a time so very large factorials never appear in intermediate values.
Closed form · C(n, r) = n! ÷ (r! × (n − r)!)
Multiplicative · Π from i = 1 to k of (n − k + i) ÷ i, where k = min(r, n − r)
Conventions: C(n, 0) = C(n, n) = 1 · C(n, r) = C(n, n − r).
Related counting and math calculators
- Permutations calculator for arrangements where order matters.
- Binomial probability calculator uses C(n, k) directly to compute trial-based probabilities.
- Scientific calculator for factorial, exponents, and general arithmetic.
- Factor calculator for factors and prime factorization (note: not the same as factorial).
- Percentage calculator for converting counts into percent probabilities.
- Fraction calculator for exact probability ratios.
- All education calculators.
Related Calculators
More tools from Education



