Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本的な演算子を使用して、追加の演算子交差を導き出します。
R ∩ S = ?
(R ∪ S) - ((R -S) ∪ (S -R)) でも、もっと簡単な方法があると思いますか?
B と交差する A は、A - (A - B) または同等の B - (B - A) に等しい
R ∩ Sも等しい~( (~R) ∪ (~S) )
R ∩ S
~( (~R) ∪ (~S) )
~Aの補数はどこですかA
~A
A