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.

  1. Innermost first. Start with |A \cap B \cap C| — the central triple overlap.
  2. 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|.
  3. Single-set crescents after. Fill the three "only this set" regions: |A \setminus (B \cup C)|, similarly for B and C.
  4. 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:

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.

|C \cap F \cap H| = 3

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.

|C \cap F \setminus H| = 9 - 3 = 6
|C \cap H \setminus F| = 7 - 3 = 4
|F \cap H \setminus C| = 5 - 3 = 2

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.

|C \text{ only}| = 25 - 6 - 4 - 3 = 12
|F \text{ only}| = 20 - 6 - 2 - 3 = 9
|H \text{ only}| = 18 - 4 - 2 - 3 = 9

Step 4 — outside. Sum the seven inner regions and subtract from |U|.

\text{inside sum} = 12 + 9 + 9 + 6 + 4 + 2 + 3 = 45
\text{none} = 60 - 45 = 15

Result. 15 students play none of the three sports.

Three-set Venn diagram filled for the worked sports surveyA rectangle labelled U with 60 students contains three overlapping circles labelled C for cricket, F for football, and H for hockey. The central triple-overlap region shows the number 3. The three pairwise lens regions show 6 for cricket and football, 4 for cricket and hockey, and 2 for football and hockey. The three single-set crescents show 12 for cricket only, 9 for football only, and 9 for hockey only. Outside the three circles the region is labelled with the number 15 for students who play none. U (60 students) C F H 12 9 9 6 4 2 3 15 none
All seven inner regions plus the outside. Counts were filled in order: centre ($3$) first, then the three pairwise lenses ($6, 4, 2$), then the three single-set crescents ($12, 9, 9$), and finally the outside ($15$). Inside sum $45$ plus outside $15$ equals the total $60$ — the check every three-set Venn problem must pass.

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.

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