I have a statement that says:
In a bingo, each card can be used for two games, in how many ways Can you distribute the 2 biggest prizes, if there are 10 cards in total?
My development was:
i have 2 prizes, 10 cards and each card can be used for two games.
When the first prize is won, i have $\frac{(n + r - 1) !}{(n - 1)! * r !} = \frac{(10 + 1 - 1) !}{(10 - 1)! * 1 !}$ = $\frac{10!}{9!} = 10$ possible winners, and when the second prize is won, i have $10$ too.
And according to the additive principle, is $20$, since the games do not happen simultaneous.
But my problem, is that the correct answer must be $100$, so I want to know, what have I done wrong?
Your mistake is in using the additive principle. We use the additive principle when we count disjoint possibilities, so you're saying there are $10$ ways for someone to get the first prize, and $10$ says for someone to get the second prize, and $20$ total ways for a single person to get a single prize. The results you're looking for are who gets the first prize and who gets the second prize, so each possibility distributes both prizes. Then you have to use the multiplicative principle, and get $10*10=100$ possibilities.
Think of it like clothing- if you have $3$ shirts and $4$ pairs of pants, taking the sum would count ways of picking a single shirt, or picking a single pair of pants. But if you want to count number of ways to pick a complete outfit, both shirt and pants, you have to take the product.