In how many ways can a group of different guests (consisting of males and females) be seated at a round table with seats such that there are exactly males who are seated next to each other?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Thinking about how a table orientation would look like, it would look like three males together separated from another male by females.
Fix the lone male at the top of the table so we do not need to mind rotations.
There are 4 ways to choose this male, and 3 ! ways to rearrange the three together males.
For the females, you can distribute them as one to the left and three to the right, two to the left, two to the right, three to the left and one to the right of the lone male, that is, 3 possible orientations. There are 4 ! ways to rearrange the females.
Therefore, the total number of ways to sit is 4 ! ⋅ 4 ! ⋅ 3 = 1 7 2 8