You sit down to a survey problem. Three sets, seven or eight numbers given, a Venn diagram to fill. You draw the three circles, then freeze — which region do you put the first number in? Do you start with "25 students like cricket," which is all of A, or with "8 students like all three sports," which is the tiny lens in the middle?
Almost every student who has just learned Venn diagrams tries to fill the circles from the outside in, placing the total for each set first. That order is wrong. It creates overlaps you then have to unpick from regions you have already labelled, which is error-prone and slow. The correct order — from the centre outwards — matches the way the data is structured and never requires any unpicking.
The rule
Fill from the innermost region outwards.
- Innermost first. Start with |A \cap B \cap C| — the central triple overlap.
- Pairwise lenses next. Fill the three "exactly two sets" regions: |A \cap B \setminus C|, |A \cap C \setminus B|, |B \cap C \setminus A|.
- Single-set crescents after. Fill the three "only this set" regions: |A \setminus (B \cup C)|, similarly for B and C.
- Outside last. Subtract the sum of the seven inner regions from |U|.
Each region is computed from quantities you have already placed. You never walk backwards.
Why this order works
The problem gives you numbers at different levels of granularity. Statements like "30 study maths" refer to an entire circle — including everyone in the pairwise and triple overlaps. Statements like "5 study all three" refer only to the central lens. If you start from the outside, you have to mentally subtract the overlaps every time you look at a given total. If you start from the inside, you work through a clean subtraction ladder:
- The central lens is usually given directly ("5 study all three").
- Each pairwise lens = "study these two" - "study all three."
- Each single-set region = "this total" - (its two pairwise lenses) - "study all three."
- Outside = |U| - (sum of the seven inside regions).
Each new region is "one fact minus quantities already on the page." No region is ever revisited.
Why this avoids double-counting: when the problem says "study both maths and physics," it includes students who also study chemistry. The pairwise region A \cap B \setminus C is not the given number; it is the given number minus the triple lens. Starting from the centre means you always know the triple value before you fill the pairwise lenses.
A worked survey
In a class of $60$ students, $25$ play cricket, $20$ play football, and $18$ play hockey. Also, $9$ play cricket and football, $7$ play cricket and hockey, $5$ play football and hockey, and $3$ play all three. How many play none?
Let C = cricket, F = football, H = hockey, |U| = 60.
Step 1 — centre. The triple overlap is given directly.
Step 2 — pairwise lenses. The statement "9 play cricket and football" includes those who play all three. So the lens "cricket and football but not hockey" is 9 - 3 = 6. Same logic for the other pairs.
Why the subtraction: "9 play cricket and football" means 9 are in the cricket-football lens plus the central lens. Removing the 3 who are in all three leaves 6 in the pair-only region.
Step 3 — single-set crescents. The total in C is the single-set region plus its two pairwise lenses plus the central lens.
Step 4 — outside. Sum the seven inner regions and subtract from |U|.
Result. 15 students play none of the three sports.
Sanity check. The seven inner regions plus the outside must add to |U|: 12 + 9 + 9 + 6 + 4 + 2 + 3 + 15 = 60. Matches |U| = 60. The arithmetic is internally consistent.
What happens if you try to start from outside
Some students try: "Cricket total is 25, so I will write 25 inside the cricket circle." Then they read the next line: "9 play cricket and football" and try to squeeze 9 into the cricket-football lens — but that 9 overlaps with the 25 they already wrote, so the 25 now refers to "cricket only" in their head even though they wrote it in the whole circle. A few more lines and the numbers are double-counted or missing, because the Venn diagram is being used as a scratchpad for two different meanings of "cricket total."
The centre-first order avoids the ambiguity entirely. Every number you write is the exact count of one region, and no region is ever updated.
The general three-set template
For a class of size |U| with three sets A, B, C:
| Given | Region | Formula |
|---|---|---|
| |A \cap B \cap C| | centre | direct |
| |A \cap B| | A \cap B \setminus C | |A \cap B| - |A \cap B \cap C| |
| |A \cap C| | A \cap C \setminus B | |A \cap C| - |A \cap B \cap C| |
| |B \cap C| | B \cap C \setminus A | |B \cap C| - |A \cap B \cap C| |
| |A| | A only | |A| - |A \cap B| - |A \cap C| + |A \cap B \cap C| |
| |B| | B only | |B| - |A \cap B| - |B \cap C| + |A \cap B \cap C| |
| |C| | C only | |C| - |A \cap C| - |B \cap C| + |A \cap B \cap C| |
| |U| | outside | |U| - \text{(sum of seven inner regions)} |
The "+\|A \cap B \cap C\|" in the single-set rows is an application of inclusion-exclusion applied to a circle as a union of its four regions — the triple lens has been subtracted three times through the three pairwise subtractions, so you add it back once to leave a net single subtraction.
When the data is given differently
Sometimes a problem gives "exactly two" or "at least one" instead of "both." Translate each phrase before you start the centre-first march.
- "Exactly all three" = central lens (no translation needed).
- "Exactly two" (without saying which two) = sum of the three pairwise lenses, excluding the centre.
- "At least two" = sum of the three pairwise lenses plus the centre.
- "At least one" = |A \cup B \cup C| = everything inside the three circles.
- "Exactly one" = sum of the three single-set crescents.
Once the phrasing is converted to region-level quantities, the centre-first order applies unchanged. The picture doesn't care how the problem was worded — it only cares about which region each number belongs to.
Related: Set Operations · Three-Set Venn Diagram: All Eight Zones · Inclusion-Exclusion Calculator · Venn Diagrams from Scratch