A Intersection B Intersection C: Formula & Examples

#Algebra
TL;DR
A Intersection B Intersection C, written $A \cap B \cap C$, is the set of elements that belong to all three sets A, B, and C at the same time. Because intersection is associative, the order and the brackets do not matter: $(A \cap B) \cap C = A \cap (B \cap C)$, so we simply write $A \cap B \cap C$ and find the elements shared by every set.
BT
Bhanzu TeamLast updated on September 4, 202612 min read

What Is A Intersection B Intersection C?

A Intersection B Intersection C is the set of elements that are present in all three sets A, B, and C at once. In symbols we write it $A \cap B \cap C$, where the symbol $\cap$ means "intersection," the elements two or more sets have in common.

An element belongs to $A \cap B \cap C$ only when it satisfies three conditions together: it is in A, and it is in B, and it is in C. Miss any one of the three and the element is left out. This is stricter than a two-set intersection, because a third gate has to be passed.

Take three sets:

$$A = {1, 2, 3, 4, 5, 6}, \quad B = {2, 4, 6, 8, 10}, \quad C = {3, 4, 6, 9, 12}$$

The only numbers that appear in every one of the three lists are $4$ and $6$. So:

$$A \cap B \cap C = {4, 6}$$

Everything else fails at least one set. The number $2$ is in A and B but not C. The number $3$ is in A and C but not B. Only $4$ and $6$ clear all three.

How Do You Find A Intersection B Intersection C?

To find $A \cap B \cap C$, intersect two of the sets first, then intersect that result with the third set. The method works in one clean sweep.

Using the same three sets, here is the vertical working.

Step 1: find $A \cap B$ (the elements in both A and B).

$$A \cap B = {2, 4, 6}$$

Step 2: intersect that result with C (keep only what is also in C).

$$(A \cap B) \cap C = {2, 4, 6} \cap {3, 4, 6, 9, 12} = {4, 6}$$

Final answer: $A \cap B \cap C = {4, 6}$.

A useful check: scan each candidate element and ask "Is it in all three?" The number $2$ is in $A \cap B$ but not in C, so it drops out at Step 2. That single drop is the whole point of adding a third set.

Why Do You Not Need Brackets In A Intersection B Intersection C?

Intersection is associative, which means the way you group the sets does not change the result. Grouping A with B first, or B with C first, lands on exactly the same set.

$$(A \cap B) \cap C = A \cap (B \cap C)$$

Check it on the running example. Grouping the other way, $B \cap C = {4, 6}$, and then $A \cap {4, 6} = {4, 6}$. Identical to the answer from before. Because both routes agree, the brackets carry no information, and mathematicians drop them and write the flat expression $A \cap B \cap C$.

This is the same reason we write $2 + 3 + 5$ without brackets for ordinary addition. The operation does not care how you pair the pieces. Intersection is also commutative, so the order of the three sets does not matter either: $A \cap B \cap C = C \cap A \cap B$ and every other rearrangement gives the same set.

How Do You Count The Elements In A Intersection B Intersection C?

Often a problem gives you the sizes of the sets and their overlaps and asks for the size of the triple intersection, written $n(A \cap B \cap C)$. This is where the inclusion–exclusion principle comes in.

$$n(A \cup B \cup C) = n(A) + n(B) + n(C) - n(A \cap B) - n(B \cap C) - n(A \cap C) + n(A \cap B \cap C)$$

The three-set union counts each single set, then subtracts the three pairwise overlaps that were double-counted, then adds back the centre that was removed once too often. Rearranged, the same equation solves for the triple intersection.

Example: a survey of 100 students.

Suppose $n(A) = 40$ like Math, $n(B) = 35$ like Science, $n(C) = 30$ like English, with pairwise overlaps $n(A \cap B) = 12$, $n(B \cap C) = 10$, $n(A \cap C) = 8$, and $n(A \cup B \cup C) = 80$ students like at least one subject. Solve for the students who like all three:

$$n(A \cap B \cap C) = n(A \cup B \cup C) - n(A) - n(B) - n(C) + n(A \cap B) + n(B \cap C) + n(A \cap C)$$

$$n(A \cap B \cap C) = 80 - 40 - 35 - 30 + 12 + 10 + 8 = 5$$

Final answer: $5$ students like all three subjects. The counting formula lets you find the centre of the Venn diagram without ever listing a single element by name.

What Is The Difference Between A∩B∩C And A∩(B∪C)?

These two expressions look similar and are the pair students confuse most, so it is worth setting them side by side. One demands all three memberships; the other mixes intersection with union.

  • $A \cap B \cap C$ keeps only elements in all three sets. For the running example, that is ${4, 6}$.

  • $A \cap (B \cup C)$ keeps elements that are in A and in at least one of B or C. Here $B \cup C = {2, 3, 4, 6, 8, 9, 10, 12}$, so $A \cap (B \cup C) = {2, 3, 4, 6}$, a larger set.

The second expression obeys the distributive law, which none of the ranking pages state outright:

$$A \cap (B \cup C) = (A \cap B) \cup (A \cap C)$$

The contrast with the plain union is just as sharp. Where $A \cap B \cap C$ is the tiny shared centre, the union $A \cup B \cup C$ is everything in any of the three sets, the whole shaded area of all three circles combined. A helpful reference for the "any of them" case is A union B, and the full menu of set operations sits at operations on sets.

Table: How the three-set expressions compare.

Expression

Keeps an element when it is...

Result on the example

$A \cap B \cap C$

in A and B and C

${4, 6}$

$A \cap (B \cup C)$

in A, and in B or C

${2, 3, 4, 6}$

$A \cup B \cup C$

in A or B or C

${1, 2, 3, 4, 5, 6, 8, 9, 10, 12}$

Why Does Intersection Matter?

Intersection is the mathematics of "all conditions true at the same time," and that idea runs far past the classroom.

  • It is the logic of AND. Every time you filter a list by more than one requirement, you are taking an intersection. A search for books that are in stock and under $200 and rated four stars is $A \cap B \cap C$ in disguise, the three conditions stacked together.

  • It narrows, never widens. Adding a third set to an intersection can only shrink the result or leave it the same. This monotone behaviour is why intersection is the right tool when you want to zero in on a precise group rather than gather a broad one.

  • It pairs with union to describe any region. Intersection (AND) and union (OR) together can build any combination of sets you like, which is why they sit at the foundation of logic, probability, and database queries.

The reason $A \cap B \cap C$ deserves its own name is that three-way "all at once" conditions are everywhere: a medicine safe for three patient groups, a date free on three calendars, a gene shared by three species. The triple intersection is the exact answer to "what do all of these have in common."

Who Founded Set Theory And The Idea Of Intersection?

Sets feel obvious today, but treating "a collection of things" as a mathematical object you can operate on was a radical, and initially unpopular, invention of the late nineteenth century.

Two figures shaped how we picture and write these operations:

  • Georg Cantor (1845–1918, Germany) founded set theory and gave intersection and union their meaning as operations on collections.

  • John Venn (1834–1923, England) introduced the overlapping-circle diagrams in 1880 that let anyone see a three-set intersection as the region where all the circles meet. The Venn diagram is still the fastest way to reason about $A \cap B \cap C$.

Where Is A Intersection B Intersection C Used In The Real World?

The triple intersection is the working core of any system that filters by several conditions at once.

  • Databases and search: a query for customers who bought last month and live in Delhi and opted into email is an $A \cap B \cap C$ over three record sets. Every "match all filters" search is a multi-set intersection.

  • Biology and genetics: finding the genes shared by three species, or the symptoms common to three diseases, is a direct intersection used to spot what a group truly has in common.

  • Recommendation systems: the shows liked by you and your two closest matches, the overlap a "watch together" feature suggests, is the centre of a three-set Venn diagram.

  • Logistics and scheduling: a delivery slot that is free for the warehouse and the driver and the customer is the intersection of three availability sets.

  • Quality control: a part that passes the size check and the weight check and the finish check belongs to the intersection of three "passing" sets.

One idea, "in all of them at once," powers search engines, gene studies, recommendations, and schedules alike. Mathematics gives a single name to a pattern that shows up across completely different fields.

What Are The Most Common A Intersection B Intersection C Mistakes?

These three errors account for most lost marks on three-set problems, confirmed against the recurring student questions found in the SERP search and the standard NCERT Class 11 error notes.

Shading the wrong region on the Venn diagram.

Where it slips in:

A student shades one of the two-circle "lens" overlaps, or shades all the overlapping regions, instead of the single central area where all three circles meet.

Don't do this:

Do not shade any region that touches only two circles. $A \cap B \cap C$ is one region, not several.

The correct way:

Shade only the innermost region common to all three circles. If a point in your shading lies outside even one circle, it does not belong in $A \cap B \cap C$.

Keeping elements that are in only two of the three sets.

Where it slips in:

A student finds $A \cap B$, then lists everything in it as the answer, forgetting to intersect with C. Elements like $2$ (in A and B but not C) survive when they should not.

Don't do this:

Do not stop after two sets. An element in exactly two of the sets is never in the triple intersection.

The correct way:

After computing $A \cap B$, intersect it with C and drop anything C does not contain. Test every candidate against all three sets: in A, and in B, and in C.

Confusing intersection ($\cap$) with union ($\cup$).

Where it slips in:

A student reads $A \cap B \cap C$ as "collect everything from all three sets," which is the union, and produces a set far too large.

Don't do this:

Do not merge the sets. $\cap$ means "common to all" (AND), while $\cup$ means "in any" (OR).

The correct way:

Read $\cap$ as the small shared centre and $\cup$ as the whole combined area. For our sets, $A \cap B \cap C = {4, 6}$, but $A \cup B \cup C$ has ten elements. A quick look at intersection of sets and union of sets side by side fixes the confusion for good.

Practice Problems On A Intersection B Intersection C

Use $P = {1, 2, 3, 4, 5, 6, 7, 8}$, $Q = {2, 4, 6, 8, 10}$, and $R = {1, 2, 3, 5, 8, 13}$ unless a problem says otherwise. Answers follow each line.

  1. Find $P \cap Q \cap R$.
    (Answer: $P \cap Q = {2, 4, 6, 8}$, then $\cap R = {2, 8}$.)

  2. Find $P \cap Q$ and $Q \cap R$ separately.
    (Answer: $P \cap Q = {2, 4, 6, 8}$; $Q \cap R = {2, 8}$.)

  3. Verify associativity: show $(P \cap Q) \cap R = P \cap (Q \cap R)$.
    (Answer: both equal ${2, 8}$.)

  4. For $X = {a, b, c, d}$, $Y = {b, d, f}$, $Z = {a, d, e}$, find $X \cap Y \cap Z$.
    (Answer: ${d}$.)

  5. A survey gives $n(A) = 50$, $n(B) = 40$, $n(C) = 30$, $n(A \cap B) = 15$, $n(B \cap C) = 12$, $n(A \cap C) = 10$, and $n(A \cap B \cap C) = 6$. Find $n(A \cup B \cup C)$.
    (Answer: $50 + 40 + 30 - 15 - 12 - 10 + 6 = 89$.)

  6. Using $P$, $Q$, $R$ above, compare $P \cap Q \cap R$ with $P \cap (Q \cup R)$.
    (Answer: $P \cap Q \cap R = {2, 8}$; $Q \cup R = {1, 2, 3, 4, 5, 6, 8, 10, 13}$, so $P \cap (Q \cup R) = {1, 2, 3, 4, 5, 6, 8}$, a larger set.)

Where Should You Go Next After A Intersection B Intersection C?

The three-set intersection opens onto the wider algebra of sets, and several natural doors lead on from here.

  1. Operations on sets. See intersection, union, difference, and complement together, and how they combine into larger expressions.

  2. Venn diagram. Master the visual tool that makes two-set and three-set problems something you can solve by shading.

  3. Types of sets. Finite, infinite, equal, and empty sets, the vocabulary that makes every later set problem clearer, alongside subsets and the complement of a set.

If your child is building these foundations, a live Bhanzu trainer teaches set operations starting from the "why" behind intersection and union in the Bhanzu algebra program.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is A Intersection B Intersection C?
$A \cap B \cap C$ is the set of all elements that belong to all three sets A, B, and C at the same time. An element is included only if it is in A and in B and in C.
What is the formula for A Intersection B Intersection C?
Intersect two sets first, then the third: $A \cap B \cap C = (A \cap B) \cap C$. Because intersection is associative, $(A \cap B) \cap C = A \cap (B \cap C)$, so the grouping does not change the answer.
How do you find n(A∩B∩C) when only the sizes are given?
Rearrange the inclusion–exclusion principle: $n(A \cap B \cap C) = n(A \cup B \cup C) - n(A) - n(B) - n(C) + n(A \cap B) + n(B \cap C) + n(A \cap C)$. This finds the size of the triple overlap without listing elements.
Is A Intersection B Intersection C the same as A∩(B∪C)?
No. $A \cap B \cap C$ needs an element to be in all three sets, while $A \cap (B \cup C)$ needs it to be in A and in at least one of B or C. The second set is usually larger.
Can A Intersection B Intersection C be the empty set?
Yes. If no single element is shared by all three sets, the intersection is the empty set $\varnothing$. This happens whenever the three circles of the Venn diagram have no common central region.
Which curricula cover A Intersection B Intersection C?
Set operations, including three-set intersection, appear in India's NCERT Class 11 (Chapter 1, Sets) and in the IB Diploma Programme mathematics courses, then recur throughout probability and discrete mathematics at university level.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →