Set Operation Proofs
96 words
1 min read
Visual companion
Python
Type and operator map
Python Week 1: the first filter for runtime behavior
View
Revision summary
What this note is really saying
Short form
# Set Operation Proofs ## Proving Distributive Law **Theorem:** $A \cap (B \cup C) = (A \cap B) \cup (A \cap C)$ **Proof:** Let $x \in A \cap (B \cup C)$. Then $x \in A$ and $x \in B \cup C$.

Set Operation Proofs
Proving Distributive Law
Theorem: A∩(B∪C)=(A∩B)∪(A∩C)
Proof: Let x∈A∩(B∪C). Then x∈A and x∈B∪C. So x∈A and (x∈B or x∈C). If x∈B, then x∈A∩B. If x∈C, then x∈A∩C. Either way, x∈(A∩B)∪(A∩C). The reverse inclusion is similar. □
Join Discord
PreviousSet TheoryNextRelations and Functions