

InterviewSolution
Saved Bookmarks
1. |
In how many ways can five people be divided into three groups? (b) In how many ways can five people be distributed in three different rooms if no room must be empty? In how many ways can five people be arranged in three different rooms if no room must be empty and each room has 5 seats in a single row. |
Answer» 5->1,1,3 `(5!)/(3!*1!*1!*2!)=10` 5->1,2,2 `(5!)/(11*2!*2!*2!)=15` Total groups=25 c)5->1,1,3 =10 3 different rooms `5C_1*5C_1*5C_3*3!-(1)` 1,2,3=15 3 different rooms `5C_!*5C_2*2!5C_2*2!-(2)` Total wages=adding 1 and 2 =90000+180000=270000. |
|