I'm looking at a problem for a card game where you already have a king in hand and need to find a king and a queen when drawing 3 cards. Right now I'm looking at something like:
$3! \times \frac{3}{51} \times \frac{4}{50}$
But I am pretty sure that this is not correct, as the order matters if the king or queen is found first because the chance of finding either is not the same.
EDIT: For simplicity's sake, let's assume that the only card not in the deck is the one king in hand. Also, the third card does not matter and is allowed to be another king or queen or any other card.
You are close but you double count all draws of $KKQ$ or $KQQ$ twice, once for each of the paired cards. You need to subtract those once, so it becomes $$3!\cdot \frac 3{51}\cdot \frac 4{50}-3\cdot \frac 3{51}\cdot \frac 4{50}\cdot \frac 2{49}-3\cdot \frac 3{51}\cdot \frac 4{50}\cdot \frac 3{49}$$