InterviewSolution
| 1. |
The total number of ways in which 5 toys of different colors can be distributed among 3 children so that each child gets at least one toy is1. 1002. 1203. 1504. 50 |
|
Answer» Correct Answer - Option 3 : 150 Concept: Suppose a set of n objects has n1 of one kind of object, n2 of a second kind, n3 of a third kind, and so on with n = n1 + n2 + n3 +...+ nk then the number of distinguishable permutations of the n objects is = \(\frac{{{\rm{n}}!}}{{{{\rm{n}}_1}! \times {{\rm{n}}_2}! \times {{\rm{n}}_3}! \ldots \ldots \ldots {{\rm{n}}_{\rm{k}}}!}}\)
Addition and Multiplication principal:
Calculation: Total no. of toys = 5 = 5C2 × 3C2 × 1C1 × \(\frac {3!}{2!}\) + 5C1 × 4C1 × 3C3 × \(\frac {3!}{2!}\) = (10 × 3 × 1 × 3) + (5 × 4 × 1 × 3) = 90 + 60 = 150 |
|