Question
Question: n different toys are to be distributed among n children. Find the number of ways in which these toys...
n different toys are to be distributed among n children. Find the number of ways in which these toys can be distributed so that exactly one child gets no toy.

2n(n−1)n!
Solution
The problem asks us to find the number of ways to distribute n different toys among n children such that exactly one child gets no toy.
We can solve this problem in two main steps:
Step 1: Choose the child who gets no toy.
There are n children in total. We need to choose exactly one child who will not receive any toy.
The number of ways to choose this child is given by the combination formula:
nC1=(1!∗(n−1)!)n!=n ways.
Step 2: Distribute the n different toys among the remaining n-1 children such that each of these n-1 children receives at least one toy.
Since there are n toys and n-1 children, and each child must receive at least one toy, it logically follows that one child among these n-1 children must receive two toys, and the remaining n-2 children must each receive one toy.
To achieve this distribution, we can follow these sub-steps:
a. Choose 2 toys out of n different toys to be given to one specific child.
The number of ways to choose these 2 toys is nC2=(2!∗(n−2)!n!.
b. Choose 1 child out of the n-1 children (who are receiving toys) to receive these 2 toys.
The number of ways to choose this child is (n−1)C1=(n−1).
c. Distribute the remaining n-2 toys among the remaining n-2 children. Each of these n-2 children will receive exactly one toy. Since both the toys and children are distinct, this is a permutation problem.
The number of ways to distribute these n-2 distinct toys to n-2 distinct children is (n−2)!.
Now, multiply the results of these sub-steps to find the number of ways for Step 2: Number of ways for Step 2 = nC2∗(n−1)C1∗(n−2)! =[(2!∗(n−2)!)n!]∗(n−1)∗(n−2)!
We can cancel (n−2)! from the numerator and denominator:
=[2!n!]∗(n−1) =2n!∗(n−1)
Step 3: Combine the results from Step 1 and Step 2.
The total number of ways to distribute the toys is the product of the ways from Step 1 and Step 2: Total ways = (Ways to choose the child who gets no toy) * (Ways to distribute toys to the remaining children) Total ways = n∗[2n!∗(n−1)] Total ways = 2n∗(n−1)∗n!
The final answer is 2n(n−1)n!.
Explanation of the solution:
- Select the child who receives no toy: There are
nchoices for this child (n C 1). - Distribute
ndistinct toys among the remainingn-1distinct children such that each gets at least one toy:- Since there are
ntoys andn-1children, one child must receive two toys, and the othern-2children must receive one toy each. - Choose 2 toys out of
nto form a pair (n C 2ways). - Choose 1 child out of the
n-1children to receive this pair (n-1 C 1ways). - Distribute the remaining
n-2toys among the remainingn-2children, one toy each ((n-2)!ways). - Multiply these counts: nC2∗(n−1)C1∗(n−2)!=[(2!(n−2)!)n!]∗(n−1)∗(n−2)!=2n!∗(n−1).
- Since there are
- Total ways: Multiply the result from step 1 and step 2: n∗[2n!∗(n−1)]=2n(n−1)n!.
