假設 A、B、C、F 都是布林變數,F= not(A or(B and C)),找出與 F 等效的布林運算式:
A(not A)or((not B)and(not C))
B(not A)and(B or C)
C(not A)or(B or C)
D(not A)and((not B)or(not C))正確答案
答案與詳解
F=not(A or (B and C))=(not A) and not(B and C)=(not A) and ((not B) or (not C))。兩次 DeMorgan 完整套用,正解。
