What is 52 choose 5?
52C5 = 2,598,960 distinct five-card hands from a standard 52-card deck.
Count unordered selections nCr—poker hands, committees, and lottery lines where {A,B,C} equals {C,B,A}.
Runs in your browser · No data stored · No signup
nCr counts unordered selections: how many ways to choose r items from n when order does not matter. 52C5 = 2,598,960 distinct five-card poker hands from a standard deck.
10C3 = 120
Combinations count groups, not sequences. A committee of three from ten people has the same members whether Alice is listed first or third—only the set {Alice, Bob, Carol} matters.
Formula: nCr = n! / (r! × (n−r)!) — often read “n choose r.” The extra r! in the denominator strips the r! ways to reorder each subset that permutations would treat as different.
**Relationship:** nCr = nPr / r!. If 5P3 = 60 ordered triples, dividing by 3! = 6 gives 5C3 = 10 unordered triples.
Pascal's triangle rows list binomial coefficients C(n,k). Row n sums to 2^n—the number of subsets of an n-element set. Combinations appear in probability whenever drawing without order: lottery balls, committees, card hands.
Order ignored → nCr. Enter n and r for exact “n choose r,” then use probability calculator for event fractions.
Concise answers for common searches — definitions, steps, and comparisons.
52C5 = 2,598,960 distinct five-card hands from a standard 52-card deck.
Divide by r!: nCr = nPr / r!. Example: 5P3/3! = 60/6 = 10 = 5C3.
10C3 = 120 unordered triples from ten distinct items.
There is exactly one way to choose nothing—the empty subset.
Computes nCr via exact factorial ratios with BigInt cancellation, avoiding overflow from computing n! alone.
Formula
nCr = n! / (r! (n−r)!) for 0 ≤ r ≤ n. Pascal rule: C(n,k) = C(n−1,k−1) + C(n−1,k). Binomial theorem: (x+y)^n = Σ C(n,k) x^k y^(n−k).If listing {1,2,3} is the same as {3,2,1}, combinations apply. Ranked awards need permutations.
Pool size n; subset size r with 0 ≤ r ≤ n.
nC(n−r) equals nCr—choosing 2 to leave out of 10 matches choosing 8 to keep.
Favorable combinations ÷ total nCr gives probability when outcomes are equally likely.
Input
n = 5, r = 2Output
5C2 = 10Ten unordered pairs from five elements.
Input
n = 10, r = 3Output
10C3 = 120120 teams of three—order of names on the roster ignored.
Input
n = 20, r = 18Output
20C18 = 20C2 = 190Choosing 18 to include equals choosing 2 to exclude.
Input
n = 52, r = 5Output
52C5 = 2,598,960Standard five-card hand count from full deck.
Input
n = 7, r = 0 and r = 7Output
7C0 = 7C7 = 1Empty set and full set each have exactly one combination.
Input
5P3 = 60Output
5C3 = 60/6 = 10Divide ordered count by 3! to drop order.
Common real-world scenarios where this tool saves time.
Five cards from 52: 52C5 = 2,598,960 possible hands—denominator for flush probabilities.
Pick 6 numbers from 49: 49C6 ≈ 13.98 million combinations—odds math starts here.
Choose 4 finalists from 20 applicants where rank within the group is irrelevant: 20C4.
Inspect 5 units from a batch of 100 without caring about inspection order: 100C5 sample sets.
Step-by-step chains that connect related tools for common tasks.
| n \ r | 0 | 1 | 2 | 3 | 4 |
|---|---|---|---|---|---|
| 4 | 1 | 4 | 6 | 4 | 1 |
| 5 | 1 | 5 | 10 | 10 | 5 |
| 6 | 1 | 6 | 15 | 20 | 15 |
| 7 | 1 | 7 | 21 | 35 | 35 |
Pascal's triangle rows—each entry sums to 2^n.
| Pool | Pick | nCr | Order of magnitude |
|---|---|---|---|
| 49 | 6 | 13,983,816 | ~14 million |
| 59 | 5 | 5,006,386 | ~5 million |
| 90 | 5 | 57,958,470 | ~58 million |
Compute 100C3 as (100×99×98)/(3×2×1) to avoid 100! entirely.
Row 6: 1,6,15,20,15,6,1—quick lookup for n ≤ 10 on exams.
Once favorable and total combinations are known, probability is their ratio.
Combinations never exceed permutations for the same n,r—catches mode errors.
Divide nPr by r! or use nCr directly—otherwise you overcount by every reordering.
nCr already counts each subset once. Do not divide by 2 again for pairs unless problem defines labeled ends.
Choosing 3 fruits from {apple, banana, cherry} allowing duplicates uses stars-and-bars, not nCr.
Standard 52C5 treats cards as distinct—even same rank different suits are different items.
Advertisement
10C3 = 120 ignores order. 10P3 = 720 counts every ordering—720/6 = 120.
Yes—use symmetry nCr = nC(n−r) to multiply fewer terms.
Exactly k successes in n trials has C(n,k) × p^k × (1−p)^(n−k) favorable patterns.
No—roles are ordered. Use permutations or multiply combinations by r! for labeled positions.
Also called multiset combinations—formula C(n+r−1, r), not standard nCr.
n!/(n−r)! is nPr; dividing by r! removes order. Together they count subsets only.
Peaks near r = n/2. 100C50 has 30 digits—use exact tools, not floating calculators.
Combination inputs are calculated locally without server upload.
Advertisement
Reviewed by EverydayTools Editorial Team on 2026-07-03.
Same workflow or intent — pick the next step without leaving the site.
Prime checker with factor tree, sieve animation, next/prev prime, twin detection, Miller–Rabin to 10¹², TXT/CSV export. Six modes—runs locally, no signup.
Calculate factorial n! for 0 ≤ n ≤ 500 with exact big-integer results. No upload—runs locally in your browser. Free, instant n! for combinatorics.
Calculate powers like a^b, negative exponents, and fractional exponents with clear results and quick examples like 2^3 = 8. Runs locally in your browser when supported—no upload required for normal use.
Free fraction calculator with steps: add, subtract, multiply, divide, simplify, and show mixed/decimal forms instantly. Fast, private, no signup. Runs locally in your browser when supported—no upload required for normal use.
Find the greatest common factor of two or more integers using the Euclidean algorithm and factor-method explanations. Runs locally in your browser when supported—no upload required for normal use.
Calculate the least common multiple of two or more integers with formula-based steps and prime factorization guidance. Runs locally in your browser when supported—no upload required for normal use.
Frequently opened tools from the same category.
Calculate BMI from height and weight using metric or imperial units. See BMI category ranges and use it as a quick screening estimate. Runs locally in your browser when supported—no upload required for normal use.
Estimate daily calories using the Mifflin-St Jeor BMR formula and TDEE activity multipliers for maintenance, weight loss, or weight gain. Runs locally in your browser when supported—no upload required for normal use.
Free tip calculator — find tip amount, bill + tip total, and per-person share. Presets for common percentages (10%, 15%, 20%), custom %, and equal split. Runs in your browser. No signup.
What is 20% of 500? Percent increase, decrease, difference, reverse %, markup & margin—runs locally in your browser, no upload. Copy results or share a link.
Cross-category tools others open in the same session.
Free JSON formatter — paste minified or messy JSON and instantly get beautified, indented output with syntax highlighting and error detection. Browser-based, no server upload. Runs locally in your browser when supported—no upload required for normal use.
Compress JPG, PNG & WebP in your browser—up to 80% smaller, batch 25 files, 50/100/200 KB presets. Files stay on your device. No signup.
Free PDF merger — combine multiple PDF files into one document. Drag to reorder files, preview pages, and download the merged PDF instantly. No signup, fully browser-based. Runs locally in your browser when supported—no upload required for normal use.
Instantly count words, characters, sentences, paragraphs, and reading time. Great for essays, articles, and SEO writing. No signup — works as you type. Runs locally in your browser when supported—no upload required for normal use.
Guides and walkthroughs that reference this tool.
10 free browser calculators: BMI, tip, discount, overtime, GPA, compound interest. No upload—runs locally. No signup.
2026 roundup of BMI calculators—EverydayTools, CDC, NIH, Healthline, and Calculator.net compared on accuracy, privacy, units, and clinical context.
Browse full tool collections by topic.