.
In how many ways can we seat 3 pairs of siblings in a row of 10 chairs, so that nobody sits next to their sibling?
(Two chairs will be left empty, of course.)
~~~~~~~~~~~~~~~~~~~~~~~~
Before to start, I want to make couple of notices.
First, this instruction " Two chairs will be left empty, of course " is, OBVIOUSLY, incorrect.
The correct instruction should say " Four chairs will be left empty, of course ".
Second, the meaning of the problem is that for each pair of siblings, the paired siblings do not seat in adjacent chairs.
This problem can be solved using Inclusion-Exclusion principle step by step, following this logic.
Let's the pairs of siblings be A=(x,y), B=(u,v), and C=(z,t) (so, A, B and C are their family names).
Step 1. First, we consider all possible different placements of 6 persons (three pairs of siblings) in 10 chairs
without any constraints.
The number of these placements is 10*9*8*7*6*5 = 151200, so we consider the list of all such 151200 placements.
Step 2. From this list, we cross out all arrangements, where (x,y) are next to each other.
We consider the pair (x,y) as one unit; so, we have this unit and 4 other persons to arrange them
in 9 places. It can be done by N1 = 9*(8*7*6*5) different ways. It means that for (x,y) we cross out
N1 =(9)*(8*7*6*5) = 15120 records from the list of all 151200 placements.
We do the same for the pairs (y,x), (u,v), (v,u), (z,t) and (t,z).
Thus, doing this way, we cross out, in all, 6*N1 similar records from the list .
After this step, we have 151200-6*N1 = 151200 - 6*15120 = 60480 records in the list.
Again, for now, there are 60480 records in our list.
Step 3. But doing it, we cross out some records several times.
We cross out several time the records, where we find
- the pair (x,y) sitting together and the pair (u,v) sitting together;
- the pair (x,y) sitting together and the pair (z,t) sitting together;
- the pair (u,v) sitting together and the pair (z,t) sitting together.
- the pair (y,x) sitting together and the pair (u,v) sitting together;
- the pair (y,x) sitting together and the pair (z,t) sitting together;
- the pair (v,u) sitting together and the pair (z,t) sitting together.
- the pair (x,y) sitting together and the pair (v,u) sitting together;
- the pair (x,y) sitting together and the pair (t,z) sitting together;
- the pair (u,v) sitting together and the pair (z,t) sitting together.
- the pair (y,x) sitting together and the pair (v,u) sitting together;
- the pair (y,x) sitting together and the pair (t,z) sitting together;
- the pair (v,u) sitting together and the pair (t,z) sitting together.
So, we want to know the number of such records what we crossed out
several times to compensate them in the future.
Therefore, we make
Step 4. Let's determine the number N2 of all possible placements of pair A and B,
where siblings (x,y) seat next to each other, and siblings (u,v) seat next to each other,
without other restrictions.
For it, we consider the pair (x,y) as one unit and consider the pair (u,v) as the other unit.
so, we have these two units and 2 other persons to arrange them in (10-1-1) = 8 places.
It can be done by N2= (8*7)*(6*5) = 1680 different ways.
It means that in the step 3 we crossed out N2 = (8*7)*(6*5) = 1680 records 12 times from the list
of all 151200 placements.
So, to compensate multiply crossing, we should restore 12*N2 = 12*1680 = 20160 records
in the list of placements.
Thus, for now, the list of records will contain 60480 + 20160 = 80640 records.
Step 5. But again, doing this way, we restore some records in the list several times.
Namely, we restore several times the records, where siblings (x,y) seat together,
as well as siblings (u,v) seat together and siblings (z,t) seat together.
Let's calculate, in how many cases N2 siblings (x,y) seat together, as well as siblings (u,v)seat together
and siblings (z,t) seat together in 10 chairs in the row.
So, we consider three pairs A = (x,y), B = (u,v) and C = (z,t) as three units, and we can place them in (10-3) = 7 positions.
It can be done in N2 = 7*6*5 = 210 different ways.
In these records, there are 2 possible permutations of siblings inside each pair.
So, the total number of these repeating restoring is = 8*N2 = 8*(7*6*5) = 8*210 = 1680.
Hence, to keep the balance, we should subtract 1680 from 80640.
Step 6. Thus, the final number of arranging/placing of three pairs of siblings in accordance with the problem is
80640 - 1680 = 78960.
At this point, the problem is solved completely.
ANSWER. There are 78960 different ways to arrange 3 pairs of siblings in a row of 10 chairs
such that, in paired siblings, nobody sits next to their sibling.
Solved.