In my experience, the Venn diagram method always takes longer than two minutes and so I'd like to use a formula. Browsing the forums, I came across this link: overlapping-sets-t1960.html
which gives me two formulas for overlapping sets:
Formula 1:
# of items total = (a + b + c) - (ab + ac + bc) + (abc)
in the formula, 'a' stands for the # of items in set a (regardless of whether they are in other sets as well), 'ab' for the # of items that are in both sets a and b (again, regardless of whether they're in c), and so forth.
note that you cannot use this formula if you are given information with exclusivity (for instance, the number of items in set a and b but not in set c).
Formula 2:
Total = H + M + E - only (H intersect M) - only (H intersect E) - only (M intersect E) - 2 * (H intersect M intersect E)
only (H intersect M) implies
(H intersect M) - (H intersect M intersect E)
My question is: how do I know which formula to use? What language or wording can I pick up on in the question that will help me choose the right one? Thank you!