Pardon my crudeness, as I'm not a mathematician. I have two unequal sets of items: $A = \{a,b,c,d,e,f\}$ and $B = \{1,2,3,4,5,6,7,8,9\}$. The members in each set can have multiple combinations. For example: $\{ab,abc,...\}$ and $\{1,12,123,...\}$. Order doesn't matter, so $\{ab,123\}$ is the same as $\{ba,312\}$.
To figure this out, I first simply added up the results from applying the binomial coefficient formula to each set and then multiplied the two sums:
${9}\choose{1}$ = $\frac{9!}{1!(9-1)!}$ + ${9}\choose{2}$ = $\frac{9!}{2!(9-2)!}$ + ... + ${9}\choose{9}$ = $\frac{9!}{9!(9-9)!}$ = 511
x
${6}\choose{1}$ = $\frac{6!}{1!(6-1)!}$ + ${6}\choose{2}$ = $\frac{6!}{2!(6-2)!}$ + ... + ${6}\choose{6}$ = $\frac{6!}{6!(6-6)!}$ = 63
The product of the two sums gave me 32,193 total combinations. Was my process correct? If not, what did I do wrong? If I am right, is there a more efficient formula?