我正在刷我的布尔代数,我很困惑哪一个实际上是正确的方法?
What's the difference between the dual and the complement of a boolean expression?
duality principle in boolean algebra
F(X,Y) = X + Y
DUAL: XY
还是DUAL: X'Y'
?
答案 0 :(得分:1)
一句话就是:X'Y'
。简单地duality principle是:
设(S,∨,∧)是布尔代数。 那么,如果∨和∧互换,则(S,∨,∧)中的任何定理都是有效的,并且throughout和⊤在整个定理中互换。
因此,您必须将+
与.
和True
与False
互换。因此,无论X
和Y
是否为假,都必须将其替换为X'
和Y'
。