How many combinations can we have from:
r elements from n distinct objects
where order does matter and
replacements are not allowed?
Combinations with Replacment Formula
CR(n,r) = | (n + r - 1)! |
| r! (n - 1)! |
Plug in n = 9 and r = 3, we get:
CR(9,3) = | (9 + 3 - 1)! |
| 3!(9 - 1)! |
Calculate 11!
11! = 11 x 10 x 9 x 8 x 7 x 6 x 5 x 4 x 3 x 2 x 1
11! = 39916800
Calculate 3!
3! = 3 x 2 x 1
3! = 6
Calculate 8!
8! = 8 x 7 x 6 x 5 x 4 x 3 x 2 x 1
8! = 40320
Plug in factorial values:
CR(9,3) = | 39916800 |
| 6(40320) |
CR(9,3) = | 39916800 |
| 241920 |
CR(9,3) = 165
Excel or Google Sheets formula:
Excel or Google Sheets formula:
=FACT(9+3-1)/FACT(3)(FACT(9 - 1)
How does the Combinations with Replacement Calculator work?
Free Combinations with Replacement Calculator - Calculates the following:
How many combinations can we have from a sample of r elements from a set of n distinct objects where order does matter and replacements are not allowed?
This calculator has 2 inputs.
What 1 formula is used for the Combinations with Replacement Calculator?
CR(n,r) = (n + r - 1)!/r! (n - 1)!
What 3 concepts are covered in the Combinations with Replacement Calculator?
- combination
- a mathematical technique that determines the number of possible arrangements in a collection of items where the order of the selection does not matter
nPr = n!/r!(n - r)! - combinations with replacement
- factorial
- The product of an integer and all the integers below it