Probability nCr- Calculation and Examples

What Is nCr in Probability?

nCr stands for "combinations of n things taken r at a time." It's the number of ways to choose r items from n items where order doesn't matter.

That's the key part. If you're picking 3 people from a group of 10 to form a committee, nCr tells you how many different committees are possible. The same person in position 1 versus position 2 doesn't create a new committee.

The formula is:

nCr = n! / (r! × (n - r)!)

Where n is your total pool and r is what you're picking.

When to Use nCr vs nPr

People mix these up constantly. Here's the difference:

If you're asking "how many ways can I arrange..." use nPr. If you're asking "how many ways can I choose..." use nCr.

Real Examples of nCr Calculations

Example 1: Lottery Draw

State lottery: pick 6 numbers from 1-49.

n = 49, r = 6

49C6 = 49! / (6! × 43!) = 13,983,816 possible combinations

That's why your odds of winning are roughly 1 in 14 million. The math doesn't care about your "lucky numbers."

Example 2: Card Hands

How many 5-card hands can you get from a 52-card deck?

52C5 = 52! / (5! × 47!) = 2,598,960 hands

This is why poker works. The number of possible hands is large enough that skilled players can exploit probability, but not so large that luck dominates everything.

Example 3: Committee Formation

25 employees, need to form a 4-person safety committee.

25C4 = 25! / (4! × 21!) = 12,650 combinations

Every one of those 12,650 groups is equally valid. Your opinion of who "deserves" to be on it is irrelevant to the math.

nCr Calculation Tools Compared

Tool Best For Limitations
Scientific Calculator Quick calculations, exams Manual entry, no history
Online nCr Calculator Large numbers, batch calculations Internet required
Spreadsheet (Excel: =COMBIN) Data analysis, multiple calculations Learning curve for beginners
Python (math.comb) Programming, automation Requires coding knowledge

For most people, an online calculator handles 95% of what you'll ever need. Programmers and analysts will prefer code-based solutions for repetitive work.

How to Calculate nCr: Getting Started

Method 1: Direct Formula

  1. Calculate n! (n factorial)
  2. Calculate r!
  3. Calculate (n-r)!
  4. Multiply r! by (n-r)!
  5. Divide n! by that product

Method 2: Step-by-Step Cancellation

For large numbers, cancel before multiplying:

100C5 = 100 × 99 × 98 × 97 × 96 / (5 × 4 × 3 × 2 × 1)

Work from the top down. Simplify as you go. You don't need to calculate 100! to get the answer.

Method 3: Using a Calculator

Most scientific calculators have an "nCr" button. Enter n, press the button, enter r, press equals. Done in seconds.

Common Mistakes That Kill Your Calculations

When nCr Shows Up in Real Life

You're using nCr more often than you realize:

Anywhere you're counting "how many ways can this group be formed" without caring about order, you're doing nCr.

The Bottom Line

nCr is just counting combinations. The formula is straightforward. The hard part is knowing when to apply it versus nPr, and not overthinking the math when a calculator can handle it in milliseconds.

Stop memorizing. Understand the concept: you're counting ways to choose items where the arrangement doesn't matter. The formula is a tool, not a rule to fear.