Total Possible Combinations of Combinations

gurs

Board Regular
Joined
Dec 22, 2010
Messages
52
I am trying to calculate the total number of possible combinations of a set of variables. The calculation is complicated by the fact that not every variable behaves the same way.

Here are the details. I have 5 different trait types. Each trait type has a different number of possible traits. Some traits can occur only once per observation, some can occur once or twice, and some might not occur at all. Here is an example of the data set:
  • Trait1 (hair color): 3 possible states; 1 state MUST be present in all observations
  • Trait2 (talent type): 3 possible states; 1 or 2 states MUST be present in all observations
  • Trait3 (location): 2 possible states; 1 state MUST be present in all observations
  • Trait4 (disability): 3 possible states; 1 state MAY be present in all observations (so Trait4 may be absent)
  • Trait5 (marital status): 2 possible states; 1 state MUST be present in all observations
How would I calculate the total number of possible combinations of traits 1 through 5? In truth, I think this is as much a math question as an Excel question!
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Aren't we potentially overcounting if we consider Trait2 to be two different traits? Your math is to count Trait2 as 3x3=9, but there is no state in which a subject is counted as having both 1 state AND 2 states. They have either 1 OR 2. So there should only be 6 possible combinations for Trait2 (3 possible states; 1 or 2 states must be present in all observations):
TALENT TYPE COMBOS (Types=A,B,C):
A​
B​
C​
AB​
AC​
BC​

What is the formula for this result if the number of types and potential stacking is different? For example, what about a trait with 4 possible states, in which 2, 3 or 4 states must be present in all observations. What is the formula to calculate those combinations? While the example I used in this post is simple, my use-case is much more complicated, so I need a way to structure the inputs and formula in a repeatable fashion.
 
Upvote 0
I agree it should be (3+3) not (3*3). If it were 4 types with either 1 or 2 it would be (4+6). In general if it were n types with either a1, a2, ... aj it would be
(Combin(n,a1) + Combin(n,a2) + ... + Combin(n,aj))
 
Upvote 0
Solution
Thanks for that. So the total number of combinations in my initial example is 3 * (3 * 2) * 2 * 4 * 2 = 288. Yes?
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,214
Members
449,074
Latest member
cancansova

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top