Definition
The intersection of two sets X,Y is the set of all elements that belong to X and Y
Formally:
X∩Y={x:x∈X and x∈Y}
This notion of "and" is foundational to computer programming and logic gates.
Properties
For arbitrary sets: X,Y,Z, and the empty set ∅:
i) X∩X=X
ii) X∩Y=Y∩X
iii) X∩(Y∩Z)=(X∩Y)∩Z
iv) X∩∅=∅
Example
Let X={a,b,c,d}, Y={a,e,f}
Then:
X∩Y={a}