Hi SuperColt,Good question to ask, because these "at least X%" three-set problems have a clean two-step recipe. You're really solving two different things here:
x (the minimum overlap) and
y (the maximum overlap), and each has its own trick.
Finding y (the maximum)The group studying
all three can never be larger than the
smallest of the three groups - you can't have more people in the overlap than exist in any single set.
- Hindi >=
70%, French >=
75%, German >=
80%- The smallest is Hindi at
70%- Push everyone in Hindi into French and German too (possible, since those groups are bigger)
- So the most that can study all three is
70% ->
y = 70Finding x (the minimum)Here the smart move is to flip to
complements - count who is
left out:
- At most
30% don't study Hindi (
100 -
70)
- At most
25% don't study French (
100 -
75)
- At most
20% don't study German (
100 -
80)
Add the "left out" pieces:
30 + 25 + 20 = 75%. That's the largest possible slice of students who miss
at least one language. Everyone else must be studying
all three:
-
100 - 75 = 25% ->
x = 25Therefore the pair is
x = 25, y = 70 - and notice both fall right out of the same setup, one from the smallest group, one from the leftover complements.
Lock it in with a tiny versionTry a two-set case: at least
80% do A, at least
90% do B. Minimum doing both =
100 - (
20 +
10) =
70%. Maximum doing both = the smaller group =
80%. Same two moves - smallest group for the max, sum of complements for the min.
Use that recipe every time and both columns drop out together.
Answer: Column 1 (x) = 25; Column 2 (y) = 70SuperColt
Plaese suggest what is the correct approach to solve this type of question.