What is the formula for Combination with indistinguishable objects?

1.3k Views Asked by At

Take a look at the following question,

There is a group of $10$ objects, $2$ red, $3$ blue, and $5$ green. The objects are indistinguishable. In how many ways they can be arranged on a line?

Solution:

$\binom{10}{2}\cdot\binom{8}{3}\cdot\binom{5}{5} = \frac{10!~~~8!~~~5!}{2!8!3!5!5!0!} = \frac{10!}{2!3!5!} = 2520$

What is the formula for this kind of problems so that someone can directly apply the formula to find the result?

3

There are 3 best solutions below

0
On BEST ANSWER

The general formula for the

  • number of arrangements of $n = k_1 + \cdots + k_r$ objects consisting of
  • $r$ groups of
  • $k_1, \ldots , k_r$ indistinguishable objects within each group is $$\frac{n!}{k_1! \cdot \ldots \cdot k_r!}$$

This fraction is also called multinomial coefficient and is written as $\binom{n}{k_1, \ldots ,k_r}$.

By your example you can quickly understand why it works:

  • $n=10=2+3+5$ objects can be arranged in $10!$ ways
  • Consider a given arrangements, then any permutation of the $k_1=2$, $k_2=3$, and $k_3 = 5$ indistinguishable objects reproduces the same arrangement

So, a given permutation appears $k_1!\cdot k_2!\cdot k_3! = 2!\cdot 3! \cdot 5!$ times within the $n!= 10!$ arrangements of all $10$ objects. Hence, in your case it follows that the number of (distinguishable) arrangements is $$\frac{10!}{2!\cdot 3! \cdot 5!}$$

0
On

That is usually known as multinomial coefficients.

0
On

It is Permutation of multisets. You can think of making different (unique) $10$ letter words from: $$RRBBBGGGGG.$$ Note that there $10!$ permutations of all words in total, however not all unique, because switching places of two $R$s, three $B$s or five $G$s does not change the word. Therefore you must divide by $2!$, $3!$ and $5!$: $$\frac{10!}{2!\cdot 3!\cdot 5!}.$$