3,166 views
1 votes
1 votes

Use generating function to determine the number of different ways 10 identical balloons can be given to 4 children if each children receives at least 2 balloons.

2 Answers

Best answer
1 votes
1 votes
All balloons are identical, and we're distributing it among $4$ children, it is clearly a case of combination with repetition.

The given constraint is that each of the child receives at least $2$ balloons. Mathematically we can write:

$c_1 + c_2 + c_3 + c_4 = 10$, where $c_i \geq 2$

($c_i$ is the number of balloons the $i^{th}$ child got)

From, $c_i \geq 2 \implies c_i - 2\geq 0$

Let, $c_i - 2 = b_i \geq 0$

Now, we can rewrite the equation $c_1 + c_2 + c_3 + c_4 = 10$ as follows

$b_1 + b_2 + b_3 + b_4 = 2$, where $b_i \geq 0$

So, the answer to the question is the number of solutions possible for the above equation, which is

$${ 4 + 2 - 1 \choose 2 } = {5 \choose 2} = 10$$
selected by
0 votes
0 votes

There are 4 children and 10 balloon so sum of total distribution will 10 always.

x1 + x2 + x3 + x4 = 10 (where x1,x2,x3,x4 ≥ 2)
every children should get 2 balloon so subtract the 8 balloon from total now only two ball balloon remaining which is to be distributed among 4 children.
x1 + x2 + x3 + x4 = 2 

             => n-1+rCr   4-1+2C= 5C2 = 10 different ways it can be distributed.

 

Related questions

1 votes
1 votes
2 answers
1
iarnav asked Jul 10, 2017
911 views
Given two each of p kinds of objects and one each of additional q kind of objects, in how many ways r objects can be selected?Please give a detailed solution.
0 votes
0 votes
0 answers
2
sumit goyal 1 asked Dec 16, 2017
181 views
4 votes
4 votes
1 answer
4
sumit goyal 1 asked Jan 22, 2018
1,072 views
In how many ways 2 alike apple, 3 alike orange and 4 alike mango can be given to 3 children if each child can have 1 or more than 1 fruits.