I am dealing with a problem right now. It sounds like this: assume that there are N papers with numbers throughout 1 to N in a box. Whenever one of them is drawn it is not put back in the box. What is the probability of drawing AT LEAST one paper which has the same number as the number of the draw?
What I tried: I tried visualising the problem and came to the conclusion that the first draw has the chance of 1/N. Although the second draw, if the first one failed, is equal to 1/(N-2). Things get complicated afterwards for me.
I would be grateful if you could provide me with a solution and an explanation, I'm new to this topic. Thanks!
The drawing on its own can be looked at as drawing an element out of the set of permutations on $\{1,\dots,n\}$ in such a way that all $n!$ permutations are equiprobable, and to be found is then the probability of drawing a permutation $\sigma$ such that $\sigma(i)=i$ for at least one $i\in\{1,\dots,n\}$.
This probability equals $1$ minus the probability of drawing a permutation $\sigma$ that satisfies $\sigma(i)\neq i$ for every $i\in\{1,\dots,n\}$ which is by definition a so-called derangement.
The total number of derangements here is: $$!n:=n!\sum_{i=0}^n\frac{(-1)^i}{i!}$$
So the probability that a derangement is drawn is: $$\sum_{i=0}^n\frac{(-1)^i}{i!}$$Then the probability that you are looking for is:$$1-\sum_{i=0}^n\frac{(-1)^i}{i!}=\sum_{i=1}^n\frac{(-1)^{i-1}}{i!}$$