So I had an assignment due yesterday, regarding the probability of the attackers second highest dice roll, being strictly bigger than the defenders second highest dice roll, in the game Risk.
In the game, the attacker has three dices and the defender has two. The highest dice of the attacker is compared with the highest dice of the defender, and the second-highest dice of the attacker is compared with the second highest dice of the defender. For the attacker to win, their dice must be strictly larger than the defender. The dice of the defender are $C_1$ and $C_2$, ordered as $C_{(1)} \leq C_{(2)}$, and the dice of the attacker are $B_1$, $B_2$ and $B_3$, ordered as $B_{(1)} \leq B_{(2)} \leq B_{(3)}$
I, with the help of this board wrote my answer as
P(A>D) = $B_{(2)}>C_{(1)}$:
$$\sum_{k=2}^{6} \left(\sum_{n=1}^{k-1}\frac{13-2n}{36}\right) \cdot \frac{-6k^2+42k-20}{216} =\frac{1181}{1944} =0.6075 $$
Yet my TA had another answer. We both had the same probability for $B_{(2)}$, ie. $P(B_{(2)}=k) = \frac{-6^2+42k-20}{216}$ but he used the distribution function for $B_{(2)}, P(B_{(2)}$≤k)$ = \frac{9k^2-k^3}{108}$, instead of the probability function for $C_{(1)}$ which I used.
He then multiplied the possibilities and took the sum, and got close to the same answer, but not the exact.
$$\sum_{k=1}^{6} \frac{21k-3k^2-10}{108} \cdot \frac{9k^2-k^3}{108} = 0.598 $$
My question is, which of these are the correct way to find the probability of the attackers second dice being strictly larger than the defenders second dice roll?