I have to randomly choose 50 items out of N possible items. Is there any way to compute N so that, the second time I do this process there is a large probability ( let's say p=0.5) that at least 10 items out of 50 are different? I hope I was clear enough, I am not a mathematician. Thanks in advance.
EDIT: To explain better the purpose/context of my question. The items are different, they are questions in an online test. Each user gets 50 random questions to be answered. The user can take the test several times(I assumed two times). The purpose is to avoid the users getting the same questions the second time they take the tests, hence the 10 different items i was talking about. So I want to know how many different questions must be there to start with, so that, if some users take the test several times(2), at least some of the questions (10) are different?
The average number of new items on the second draw is $50\left(1-{50\over N}\right)$. Setting this equal to $10$ will give you about a 50% chance to get 10 new items, that is, $N=62.5\approx 63$ should suffice.
Here is a chart for various $N$ values, calculated using the hypergeometric distribution.
$$\begin{array}{|c|c|}\hline N & \mathbb{P}(\text{number of new items }\geq 10) \\ \hline 59& 0.00000\\ \hline 60& 0.13625\\ \hline 61& 0.35961\\ \hline 62& 0.57756\\ \hline 63& 0.74362\\ \hline 64& 0.85324\\ \hline 65& 0.91936\\ \hline 66& 0.95692\\ \hline 67& 0.97742\\ \hline 68& 0.98832\\ \hline 69& 0.99400\\ \hline 70& 0.99693\\ \hline\end{array}$$