So we have $N$ men and $N$ women. We are creating groups of pairs. It is not necessary to use every man and woman. How many groups can we make ?
So if we number them from $1$ to $N$ - let $W_{1}$ be woman number one and $M_{1}$ be man number 1 - we have $N$ groups like for example $[(W_{1}, M_{k})]$ where $k = {1,2...n}$.So for every woman and man we have $n * n$ groups containing a pair.
Then $[(W_{1}, M_{k}), (W_{2}, M_{l})]$. Where $k = 1,2,3,4..n$ and $l = 1,2,3..n-1$ So there is ${n \choose 2} * n * (n-1)$ possible groups of two pairs. etc. Is my reasoning correct? Is the the answer $ {n \choose k} * n * n!$ ? where $k= 1,2,3...n$
Your reasoning is fine. To make $k$ pairs, you can choose the $k$ women, put them in order, choose the $k$ men, and choose the order of the men, so ${n\choose k}^2k!$