这个逻辑电路的真值表是否正确?

时间:2014-09-14 04:10:25

标签: logic truthtable

我如何为这个逻辑电路制作一个真值表

enter image description here


我的尝试:

enter image description here

我认为逻辑表达式将是:

Z = - ( - (A∧B)∨-(A∧B)∧-(B∧C))∧( - (A∧B)∧-(B∨C))

2 个答案:

答案 0 :(得分:1)

使用

假设我没有输入错误,所有输入都会减少为False。

x1 = Nand[a, b];
x2 = Or[b, c];
x3 = And[x1, And[x1, Not[x2]]];
x4 = Nor[x1, x3];
x5 = And[x3, x4];

真相表:

TableForm[BooleanTable[{a, b, c, x5}, {a, b, c}], 
TableHeadings -> {None, {a, b, c, x5}}]

enter image description here

BooleanMinimize[x5]会产生False

答案 1 :(得分:0)

是的,表格是正确的。逻辑表达式可以简化为Z = 0