I’m not sure how to ask this question or really what the correct terminology is.
I have 7 traits, {a, b, c, d, e, f, g}, and I have 12 items. Each of these items has a specific combination of these traits. I need to know which combinations of 3 items gets me all 7 traits. They are as follows:
1 = {a, b, e}
2 = {a, b}
3 = {a, c, d, e}
4 = {b, d, f}
5 = {b, d, g}
6 = {a, c, f}
7 = {a, c, g}
8 = {c, d, f}
9 = {b, e, g}
10 = {c, e, g}
11 = {d, f, g}
12 = {a, b, e}
I know there are 220 available combinations, so I’m not necessarily asking for anyone to list all possible solutions. If someone could offer some sort of formula or program I could use to find the possible solutions for myself, it would be highly appreciated.