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 不等 C)”,即“not(B exor C)”。
格式正确:
如果我们看到真值表,我们就能得到答案
现在我们可以看到 BC or(not(B) and not(C)) 等于 not(B xor C)