The Combination Calculator computes C(n,r) — the number of ways to choose r items from n items when order does not matter. Uses exact BigInt arithmetic so results are always precise even for large values like C(52,5)=2,598,960 or C(100,50). Shows the step-by-step factorial cancellation, permutations...
CHOOSE r ITEMS FROM n ITEMS (ORDER DOES NOT MATTER)
n (total)
r (choose)
C(10, 3) = NUMBER OF COMBINATIONS
120
= 10! / (3! × 7!)
Permutations P(n,r)
720
order matters
Symmetry C(n, n-r)
120
C(10, 7)
Probability (1/nCr)
0.00833333
if chosen randomly
Pascal's rule check
120 ✓
C(n-1,r-1)+C(n-1,r)
STEP-BY-STEP
n = 10, r = 3
C(n, r) = n! / (r! × (n−r)!)
C(10, 3) = 10! / (3! × 7!)
= 3,628,800 / (6 × 5,040)
= 120
Symmetry check: C(10, 7) = 120 ✓
Pascal's rule: C(9,2) + C(9,3) = 36 + 84 = 120 ✓
QUICK EXAMPLES
Row n, position r (highlighted in black)
PROPERTIES OF C(10, 3)
WHAT THIS MEANS
There are 120 ways to choose 3 items from 10 items when order does not matter.
| NAME | FORMULA | DESCRIPTION |
|---|---|---|
| Combination nCr | C(n,r) = n! / (r! x (n-r)!) | Number of ways to choose r from n, order irrelevant |
| Permutation nPr | P(n,r) = n! / (n-r)! | Number of ways to choose r from n, order matters |
| Relationship | P(n,r) = C(n,r) x r! | Permutations = combinations x arrangements of chosen items |
| Symmetry | C(n,r) = C(n, n-r) | Choosing r items same as choosing which n-r to exclude |
| Pascal's rule | C(n,r) = C(n-1,r-1) + C(n-1,r) | Each value is sum of the two above it in Pascal's Triangle |
| Row sum | Sum of C(n,k) for k=0 to n = 2^n | Total combinations across all r values equals 2 to the n |
| Special cases | C(n,0) = C(n,n) = 1 | Choosing none or all gives exactly 1 way |
| Linear case | C(n,1) = C(n,n-1) = n | Choosing one item gives n options |
Enter n — the total number of items in the set. For example, n=52 for a standard deck of cards.
Enter r — how many items you are choosing. Order does not matter: choosing items A, B, C is the same as B, C, A.
C(n,r) appears instantly in the black result box as an exact integer. For large n, BigInt arithmetic is used for exact results.
Check the related values: permutations P(n,r) = C(n,r) x r! (when order matters), symmetry C(n,r) = C(n,n-r), and the probability 1/C(n,r) of a single random selection.
The Pascal's Triangle diagram highlights your result at row n, position r. Each cell equals the sum of the two cells above it, which is Pascal's rule: C(n,r) = C(n-1,r-1) + C(n-1,r).
C(10,3): n=10, r=3. Cancel 7! top and bottom. (10x9x8)/(3x2x1) = 720/6 = 120. Symmetry: C(10,7)=120. Pascal: C(9,2)+C(9,3)=36+84=120. Permutations P(10,3)=120x6=720. Probability=1/120=0.00833. C(52,5): (52x51x50x49x48)/(5x4x3x2x1)=311875200/120=2598960 poker hands.
Mean Median Mode Calculator
Calculate instantly →
Probability Calculator
Calculate instantly →
Standard Deviation Calculator
Calculate instantly →
Permutation Calculator (nPr)
Calculate instantly →
Grade Calculator
Calculate instantly →
GPA Calculator
Calculate instantly →
Final Grade Needed Calculator
Calculate instantly →
Test Grade Calculator
Calculate instantly →
Last updated: April 29, 2026 · Formula verified by EagleCalculator team · Eagle-eyed accuracy for every calculation.