in a game of contract bridge, partner and me together have 11 cards in a suite. The remaining 2 cards in the same suite can be distributed amongst our opponents as either 1-1 or 2-0.
What is the probability that it will be distributed as 1-1 and what is the probability it will be distributed as 2-0?
Once the above is solved, how can you extend it if more cards are missing. That is, let us assume that partner and me have 8 cards between us. How do you calculate the probability for the distributions (5-0, 4-1, 3-2)?
The number of cards in suit a given opponent gets is distributed hypergeomtrically. In your particular case, $1-1$ is slightly more likely, with probability $13/25 = 1/2 + 1/50$. This is not surprising, since once you got one of the cards, the probability you'll get another drops, since then there's only one of them.
EDIT: The hypergeometric distribution with parameters $(N,m,n)$ concerns a situation in which the universe consists of $N$ cards, $m$ of which are special, and you are drawing $n$ of them. The probability that the number of special cards you draw is $k$ is exactly $$\frac{\binom{m}{k}\binom{N-m}{n-k}}{\binom{N}{n}},$$ since there are $\binom{m}{k}\binom{N-m}{n-k}$ choices for a hand with exactly $k$ special cards, and $\binom{N}{n}$ total hands.
In order to find the distribution of $1-1$, you plug in $k=1$. In order to find the distribution of $2-0$, you plug in $k=0$ and $k=2$, and add, since you don't care which player gets none and which gets both.