[Math] Figure Out Possible Combinations

permutations

I am trying to figure out how many possible of combinations I can have between two sets of values. My two sets looks like this:

Set 1: [White, Black]
Set 2: [Blue, BlueGreen, Brown, Orange, Pink, Purple, Red, Yellow, YellowGreen]

Set 1 has two options. Set 2 has ten options. Someone must pick one option from each set. How do I figure out how many potential combinations there are? I'm not sure if I need to do 2 * 10 and then use permutations. Or if I should do 2! then add it to 10!.

Thank you for your help!

Best Answer

If you pick one item from each set, you have two choices for the first and ten for the second, $2*10=20$ in all. If you pick all the items from the first set in a particular order and all the items from the second in a particular order you have $2!*10!=7257600$

Related Question