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.
この質問は、次の単純化に関連しています。
A( not(BC) +BC ) = A*not(B XOR C) はどのようになりますか?
前もって感謝します!
「(not(B) and not(C)) or (B and C)」は、「B が C に等しい」の場合にのみ真です。
これは、「not(B exor C)」である「not(B unequal C)」に相当します。
適切なフォーマットで:
真理値表を見れば答えがわかる
これで、BC or(not(B) and not(C)) が not(B xor C) に等しいことがわかります。