- {x∈A⋂B}⇒{x∈A AND x∈B}
- {x∈A\B}⇒{x∈A AND x∉B}
- {x∈A\(A⋂B)}⇒{x∈A AND x∉A⋂B} ({x∉A⋂B} contains only elements of A which are not in B)
- {x∈A\(A⋂B)}⇒{x∈A AND x∉B} (retains elements of A which were not also in B)
- {x∈A\(A⋂B)}⇒{x∈A\B} QED
EXAMPLE
A={ 1, 4, 6, 9, 10 }, B={2, 4, 6, 8 }, A\B={ 1, 9, 10 }, A⋂B={ 4, 6 }, A\(A⋂B)={ 1, 9, 10 }.