For $A = \{1, 2, 3, 4\}$ and $B = \{3, 5, 6, 7\}$
How many different $4$-digit numbers with non-repeating digits can be written by choosing $2$ digits from $A$ and $2$ digits from $B$?
So I've tried solving this problem by doing:
$${4 \choose 2}{3 \choose 2}4!$$
Choosing $2$ out of the $4$ possible numbers from $A$, then choosing another $2$ out of the $3$ possible from $B$ (not counting $3$ so it's not repeated) then multiply it by $4!$ to find all the different arrangements. I found $432$ but the answer is $648$. Why didn't my method work? Which $216$ numbers did my answer not include, and why? Thanks!