2

The number of ways in which n distinct things can be distributed among n people so that at least one person does not get anything is 232. Find n. I think every object has (n-1) option. So (n-1)^n=232. But this gives the answer as 4.4(not a whole number) whereas the answer is 4.

Where am I going wrong?

1 Answers1

4

There are $n!$ ways in which everyone gets a thing. There are $n^n$ distributions in total.

Hence the formula for what you want is $n^n-n!$.

We start trying with $n=4$ and get $4^4-4!=232$. So we have found it.

Asinomás
  • 105,651