Combination Without Repetition Calculator

This calculator works out how many ways you can choose r items from a set of n distinct items when order does not matter and each item can only be chosen once, using the standard combination formula C(n, r) from probability, statistics and combinatorics. Enter the total number of items (n) and the number you want to select (r), or pick a quick preset such as a poker hand, a Lotto draw or a committee selection. The calculator returns the number of combinations C(n, r), the permutations P(n, r) for the same n and r, and r factorial, the order factor linking the two, along with step-by-step working showing n factorial, r factorial, (n minus r) factorial and the final division. It also shows an interpretation panel with the total selections possible, the ordered arrangements, the odds of one specific combination occurring, and that probability as a percentage, plus a plain English summary of the result. Use it whenever you need to know how many unique groups or hands are possible regardless of order, such as lottery odds, poker hands, sports fixtures or committee line-ups. Because factorials grow extremely quickly, results for large n are shown in scientific notation once they exceed JavaScript's safe integer range, though the calculation stays exact up to n = 170.

Calculate.co.nz is proud to be partnered with Health Based Building, a leader in sustainable and health-conscious building innovation. With over a century of experience, they develop high-performance systems like Foreverbreathe Specification, Magnum Board, and Foreverbreathe Paints to support energy-efficient, non-toxic living environments. Their commitment to healthier homes aligns with our belief that informed choices lead to better outcomes for Kiwi households.
Calculate.co.nz partner: Health Based Building
Standard Formula  C(n, r) = n! / (r! x (n - r)!). Standard combinatorics formula, verified against textbook examples.
Combinations Without Repetition
C(n, r) = n! / (r! × (n − r)!)
n = total items  |  r = items chosen  |  ! = factorial

Inputs

Quick Presets

Please enter valid whole numbers where n ≥ r ≥ 0 and n ≥ 1.

Result

C(n, r)
120
Combinations without repetition
Permutations P(n, r)
720
Ordered arrangements
r! (order factor)
6
C(n,r) × r! = P(n,r)

Step-by-Step Working

n (total items)10
r (items chosen)3
n - r7
n!3,628,800
r!6
(n - r)!5,040
C(n, r) = n! / (r! x (n-r)!)120

Interpretation

Total selections possible120
Ordered arrangements P(n,r)720
Order divides result by r!6
Probability of 1 specific combo1 in 120
As a percentage0.833%
Summary: There are 120 ways to choose 3 items from 10 distinct items when order does not matter and no item is repeated.

What is a Combination Without Repetition?

A combination without repetition counts the number of ways to select a group of r items from a set of n distinct items where order does not matter and each item can only appear once in a selection. This is the most common type of combination used in everyday probability, statistics, and exam questions.

For example, if you are choosing a committee of 3 people from a group of 10, the committee {Alice, Bob, Carol} is the same as {Carol, Alice, Bob} - the order you list them does not matter, and the same person cannot appear twice. This is a combination without repetition.

The Formula

The number of combinations without repetition is written C(n, r), also written as nCr or "n choose r":

C(n, r) = n! / (r! × (n − r)!)

Where n! means n factorial: the product of all positive integers from 1 to n. For example, 5! = 5 × 4 × 3 × 2 × 1 = 120. By convention, 0! = 1.

Worked Example: Default Values (n=10, r=3)

Choosing 3 items from 10 distinct items:

StepCalculationValue
Calculate n!10!3,628,800
Calculate r!3!6
Calculate (n - r)!7!5,040
Denominator3! × 7!30,240
C(10, 3)3,628,800 / 30,240120

There are 120 unique ways to choose 3 items from a set of 10 when order does not matter and each item is only chosen once.

Combinations vs Permutations

Permutations count ordered arrangements: P(n, r) = n! / (n - r)!. Because there are r! ways to arrange any group of r items, permutations always equal combinations multiplied by r!.

ScenarioOrder Matters?Repetition?Formula
Combinations without repetitionNoNon! / (r! × (n-r)!)
Combinations with repetitionNoYes(n+r-1)! / (r! × (n-1)!)
Permutations without repetitionYesNon! / (n-r)!
Permutations with repetitionYesYesnr

Real-World Examples

Boundary Cases

Related Calculators

Method: Standard combinatorics formula C(n, r) = n! / (r! × (n - r)!). Factorials are computed iteratively to avoid floating-point rounding for values up to n = 170 (JavaScript's safe range). Results above this range are shown in scientific notation.

This calculator computes exact integer results for n up to approximately 170. For very large values, JavaScript floating-point arithmetic may cause slight rounding in the final digits. The formula and worked examples have been independently verified against standard combinatorics textbooks.