There are 20 teams in the English Premier League. Of these 20, there is generally considered to be a clearly defined 'top six' - Arsenal, Manchester United, Manchester City, Liverpool, Chelsea and Tottenham.
Let us assume that on a given match-day, these twenty teams are paired randomly.
I am trying to find the following on a given match-day:
$P(a)$ is the probability that each 'top six' team plays another 'top six' team
$P(b)$ is the probability that there are exactly two match-ups between 'top six' teams
$P(c)$ is the probability there is exactly one match-up between 'top six' teams
I know that the number of ways to split a group of $n$ elements into pairs is given by:
$$X(n)= \frac{n!}{2^{\frac{n}{2}}(\frac{n}{2})!}$$
So, to find $P(a)$, there are $X(6)$ ways to pair off the 'top six' teams and for each of those ways, there are $X(14)$ ways to pair off the remaining teams. Thus, $$P(a)=\frac{X(6)X(14)}{X(20)} = 0.0031$$
To find $P(b)$, my plan was to find the probability of at least two match-ups and then subtract $P(a)$ from this. This is where I get a bit uncertain. There are $\binom{6}{4}$ ways to select groups of 4 'top six' teams and then 3 different ways to create two pairs from any given group of 4. And then for each of set of two pairs, there are $X(16)$ ways to pair off the remaining teams. Thus,
$$P(b)=\frac{\binom{6}{4}X(4)X(16)}{X(20)}-P(a)= 0.136 $$
Finally, there are $\binom{6}{2}$ ways to select a pair of 'top six' teams. And for each pair, there are $X(18)$ ways to pair off the remaining teams.
$$P(c)=\frac{\binom{6}{2}X(18)}{X(20)}-P(a)- P(b)= 0.650 $$
Adding these together, there should be a 78.9% chance of at least 1 'top six' match-up occurring on any given match day.
However, if I calculate the odds at least one 'top six' match-up, wouldn't it also just be:
$$1 - (\frac{14}{19})(\frac{13}{17})(\frac{12}{15})(\frac{11}{13})(\frac{10}{11}) = 0.653$$
Where am I going wrong? Is there a different way that I should be thinking about this?
For $P(a)$ you have $\frac 5{19}$ that Arsenal is paired with another top six team, then $\frac 3{17}$ that the next one left on your list is paired with a top six team, and finally $\frac 1{15}$ that the next one left is paired with the last team. $$P(a)=\frac {5\cdot 3 \cdot 1}{19\cdot 17 \cdot 15}=\frac 1{323}$$
For $P(c)$ you can select the two teams to be matched in $15$ ways. Having done that, the first one has $\frac 1{19}$ chance of getting the proper opponent, then each of the other four must find a non-top six opponent. You did not make sure the four teams that should not be paired with a top six opponent in fact are not. $$P(c)=15\cdot \frac 1{19}\cdot \frac {14}{17}\cdot \frac {13}{15}\cdot \frac {12}{13}=\frac{168}{323}\approx 0.520$$
For $P(b)$ as you say there are ${6 \choose 4}$ ways to choose the four paired teams and $3$ ways to match them up. Given a required matching we have $\frac 1{19}$ of getting the first match, $\frac 1{17}$ of getting the second, and $\frac {14}{15}$ of avoiding the match of the last two. $$P(b)=45\cdot \frac 1{19}\cdot \frac 1{17}\cdot \frac {14}{15}=\frac {42}{323}\approx 0.130$$