Deranged Santa solution

Share this page
January 2003

Deranged Santa

Heap of presents

It is Christmas Eve, and Santa is getting ready to deliver presents to children all round the world. He has a little glass of the season's spirits, and one thing leads to another, and before he knows it he is thoroughly "confused"... and he has completely mixed up all the labels with the children's names on, and put them randomly on the presents!

Supposing he has one parcel each for N children, what is the probability that every child gets presents intended for someone else?

The solution

You may wonder why we gave this puzzle such a strange name - the reason is that a way of muddling up all the presents so that every child gets someone else's presents is called a derangement. We need to find the total number of derangements of N items.

The total number of ways Santa can give presents to $N$ children is

  \[  N!=N\times (N-1)\times (N-2)\times 2\times 1.  \]    
We need to know how many of these ways involve Santa giving no child the correct present.

Let's start by counting the ways Santa can give one particular child the correct present. This is easy - it is just $(N-1)!$. So if we write $S(i)$ for the collection of ways Santa can deliver the presents, giving the correct present to the $i$th child, then $S(i)$ has $(N-1)!$ members.

We want to know the number of ways he can deliver the presents, that are not in any $S(i)$. The trouble is, the $S(i)$ overlap - there are ways Santa can get it wrong for two children, or three children, and so on. So we can't find the total number of wrong ways just by adding the number of wrong ways in $S(1), S(2)$ and so on all the way up to $S(n)$. We have to take account of the overlap.

Let’s write $S(i,j)$ for the collection of all the ways Santa can deliver the presents, giving the correct present to the $i$th child AND the $j$th child, and $S(i,j,k)$ for the collection of all the ways Santa can deliver the presents, giving the correct present to the $i$th child AND the $j$th child AND the $k$th child, and so on.

Then we can find the number of ways in which Santa gets it right for some child, somewhere (and subtract this from the total number of ways he can mix up the presents) like this:

  1. Let's add the sizes of $S(1), S(2),...,$ all the way up to $S(n)$. This includes all the ways Santa can give at least one child the right present - but lots of ways of delivering the presents have been counted more than once.
  2. Now we'll subtract the sum of all the ways Santa can deliver the presents, getting the right present to at least TWO children - this will get rid of all the overcounting in the first step, but unfortunately, lots of ways of delivering the presents will have been taken away too many times! For this step, we have to find the sum of the sizes of all the $S(i,j)$ - for every pair $i,j$.
  3. So now we add back in all the ways Santa can deliver the presents, getting the right present to at least THREE children - but once again, we've added too much back in, and lots of ways of delivering the presents have been counted more than once again. This means finding the sum of the sizes of all the $S(i,j,k)$ - for every possible choice of three children $i, j,$ and $k$.
  4. So we'll subtract the sum of all the ways Santa can deliver the presents, getting the right present to at least FOUR children - but now we've taken off too much again!
  5. We continue like this until we're up to the number of ways Santa can deliver the presents, getting the right present to EVERY SINGLE CHILD.

So what are these numbers we’re adding? There are $^ NC_1$ ways of choosing the number $i$, so adding together all the $Si$ gives $^ NC_1 \times N$.

Next we have to find the sum of the sizes of all the $S(i,j)$ - for every pair $i,j$. It’s easy to see that there are $(N-2)!$ ways of delivering presents to all the children so that two particular children get the right present - so $S(i,j)$ has size $(N-2)!$. How many ways of choosing the two children $ i$ and $j$ are there? This is easy too - it’s $^ NC_2$ - so this term is

  \[ ^ NC_2 \times (N-2)!. \]    

Remember,

  \[  ^ NC_ M = \frac{N!}{(N-M)! \times M!}.  \]    

Similarly, the next term is$ ^ NC_3 \times (N-3)!$, and so on, until the last term is $^ NC_ N \times (N-N)! =1.$ (Actually, we could have worked the last term out directly, because there’s only one way Santa can give the right present to every single child!)

We subtract the second term, then add the third term, and so on, to find that the number of ways Santa can get it right for at least one child is

  $\displaystyle  $ $\displaystyle \frac{N!}{1!(N-1)!}(N-1)! - \frac{N!}{2!(N-2)!}(N-2)! + \frac{N!}{3!(N-3)!}(N-3)! - ... -(-1)^ N\frac{N!}{0!N!}(N-N)! $    
  $\displaystyle  $ $\displaystyle = N!\left[\frac{1}{1!} - \frac{1}{2!} + \frac{1}{3!} \ldots + (-1)^ N\frac{1}{N!} \right].  $    

Since there are N! ways in total of delivering the presents, the number of ways Santa can get it wrong for every single child is

  $\displaystyle  $ $\displaystyle N! - N!\left[ 1- \frac{1}{2!} + \frac{1}{3!} ... - (-1)^ N\frac{1}{N!} \right]  $    
  $\displaystyle  $ $\displaystyle = N!\left[\frac{1}{2!} - \frac{1}{3!} ... + (-1)^ N\frac{1}{N!} \right],  $    

and finally, the chance that Santa gets it wrong is this number divided by $N!$ - the answer to the puzzle is

  \[ \left[\frac{1}{2!} - \frac{1}{3!} ... + (-1)^ N\frac{1}{N!} \right]. \]    

If you've made it this far down the page - Happy New Year from the Plus team!


Back to main puzzle page