MathematicsDiscrete MathematicsEasy

Set Intersection

Also known as:Common SetLogical AND (set context)

The intersection of two sets A and B is the set containing only those elements that are members of both A and B simultaneously. Written as A ∩ B, it identifies common elements shared between collections. Set intersection is used in database queries (SQL JOIN/AND), probability (joint events), and data deduplication tasks.

Key Formula

A ∩ B = { x | x is in A and x is in B }

LaTeX: A \cap B = \{ x \mid x \in A \text{ and } x \in B \}

SymbolMeaningUnit
AFirst setset
BSecond setset
xAn arbitrary elementelement

Worked Example

Problem

Let A = {students who play cricket} = {Arjun, Priya, Ravi, Sneha} and B = {students who play chess} = {Priya, Ravi, Deepak}. Find A ∩ B.

Solution

Step 1: Identify elements present in BOTH A and B. — Arjun: in A, not in B. — Priya: in A and in B. ✓ — Ravi: in A and in B. ✓ — Sneha: in A, not in B. — Deepak: in B, not in A. Step 2: A ∩ B = {Priya, Ravi}

Answer

A ∩ B = {Priya, Ravi} — students who play both cricket and chess.

Properties of Set Intersection

PropertyFormulaDescription
CommutativityA ∩ B = B ∩ AOrder does not change the result
Associativity(A ∩ B) ∩ C = A ∩ (B ∩ C)Grouping does not affect result
IdentityA ∩ U = AIntersection with universal set returns A
AnnihilationA ∩ ∅ = ∅Intersection with empty set is empty
IdempotencyA ∩ A = AIntersection of a set with itself is the set
Disjoint SetsA ∩ B = ∅Sets sharing no common elements

Interactive Tools

Khan Academy — Intersection and Union

Interactive exercises on set intersection.

Open Tool

GeoGebra — Venn Diagram Tool

Visualise set intersections with interactive Venn diagrams.

Open Tool

Wolfram Alpha

Compute intersections and check disjoint conditions.

Open Tool
Venn diagram with intersection of two sets shaded

Wikimedia Commons, CC BY-SA

Related Terms

From Latin "intersectio" (a cutting between), from "inter" (between) + "secare" (to cut). The symbol ∩ was also introduced by Giuseppe Peano in 1888 as a counterpart to the union symbol ∪.

intersectionset-theorydiscrete-mathematicsvenn-diagramdisjoint-sets