Santa is randomly giving $N$ different presents to $N$ different kids.
what is the probability that Samuel doesn't get a present?
what is the probability that every kid got a present?
what is the probability that there exists a kid who didn't get a present
what is the probability that exactly one kid didn't get a present?
My Attempt:
The first three sections I managed to do. For the fourth section - I'm lost.
- calculating the Complementary event: Probability that Samuel didn't get the first present: $1 - \frac{1}{N}$ repeating this process $N$ times: $$P(A) = \left(1 - \frac{1}{N}\right)^N$$
2.$ \ P(B) = \frac{N!}{N^N}$ where $N!$ is the number of different ways to give away $N$ presents
3.$\ P(C) = 1 - \frac{N!}{N^N}$
4.$ \ \Omega = N^N$.
For the numerator: if exactly one kid did not get a present, then there exists exactly one kid who got $2$ presents. There exists $N-1$ kids who did get a present, which means there's $N-1!$ (that's a guess) to give $N$ presents to $N-1$ kids?
Your answers to the first three questions are correct.
There are $N^N$ ways to distribute the presents.
If exactly one child does not receive a present, exactly one child must receive two presents. There are $N$ ways to choose the unlucky child who does not receive a present. That leaves $N - 1$ ways to select the lucky child who receives two presents. There are $\binom{N}{2}$ ways to select which two presents that child receives. There are $(N - 2)!$ ways to distribute the remaining $N - 2$ presents to the remaining $N - 2$ children. Hence, the number of favorable cases is $$\binom{N}{1}\binom{N - 1}{1}\binom{N}{2}(N - 2)! = N!\binom{N}{2}$$
Hence, the probability that exactly one child does not receive a present is $$\frac{N!\binom{N}{2}}{N^N}$$