There are n children that are randomly seated. In how many ways will the oldest child always be seated to the right of the youngest child? (It does not have to be directly to the right).
|
HINT: In half of the possible seatings the oldest child is seated to the right of the youngest, and in the other half the oldest child is seated to the left of the youngest. Why? And how many seatings are there altogether? Added:
An equivalent question that’s a little easier to talk about:
For each $k\in[n]$ there are $(n-1)!$ permutations of $[n]$ with $k$ in the first position. We’re given that $k\ne 1$. If $1<k<n$, half of these permutations have $1$ to the left of $n$, and half have $1$ to the right of $n$. If $k=n$, clearly $n$ cannot be to the right of $1$. Thus, there are $$\frac{(n-2)(n-1)!}2=\frac{n!-2(n-1)!}2=\frac{n!}2-(n-1)!\tag{1}$$ permutations that do not have $1$ in the first position and do have $n$ to the right of $1$. Note that the final expression in $(1)$ implicitly shows another way of arriving at the result. There are altogether $\frac{n!}2$ permutations of $[n]$ that have $n$ to the right of $1$, so we need only remove those that have $1$ in the first position. Every permutation with $1$ in the first position has $n$ to the right of $1$, so we must remove all of them. Since there are $(n-1)!$ such permutations, we must subtract $(n-1)!$. |
|||||||||||
|
