This is the well known problem of how to distribute 4 different things into two groups of two where neither the order of the items within a group nor the ordering of the groups makes a difference.
This can be done by selecting two items from four:
4!/2!2! = 6. Remember that by using combinations the order of the selected items is treated as not mattering. The other two are selected at the same time only 1 way:
2!/2!0! = 1
Because this approach treats 12 34 and 34 12 as distinct groups, the total above, 6, needs to be divided by 2 equalling
3.
The reason this can be done this way is that the order of two numbers within a multiplication doesn't matter and whether a given multiplication is first or second in the addition also doesn't matter.
Finally, any pair of numbers creates a unique multiplication and the additions also unique numbers, otherwise the result of 3 would possibly be reduced.
The way to do it using permutations:
4 3 2 1
_ _ _ _
= 12*2 = 24.
But as discussed each has to be divided by 2 because the order within a group doesn't matter:
24/2*2 = 6.
And the above needs to be divided by 2 because the order of the groups themselves also doesn't matter:
6/2 = 3
Posted from my mobile device