How would I make a truth table for this Logic Circuit
My attempt:
I think the logic expression would be along the lines of:
Z= −(−(A∧B)∨−(A∧B)∧−(B∧C))∧(−(A∧B)∧−(B∨C))
How would I make a truth table for this Logic Circuit
My attempt:
I think the logic expression would be along the lines of:
Z= −(−(A∧B)∨−(A∧B)∧−(B∧C))∧(−(A∧B)∧−(B∨C))
Using
Assuming I have not made an error, this reduces to False for all inputs.
x1 = Nand[a, b];
x2 = Or[b, c];
x3 = And[x1, And[x1, Not[x2]]];
x4 = Nor[x1, x3];
x5 = And[x3, x4];
The truth table:
TableForm[BooleanTable[{a, b, c, x5}, {a, b, c}],
TableHeadings -> {None, {a, b, c, x5}}]
and BooleanMinimize[x5]
yields False
yes, the table is correct. The logic expression can be simplified to Z=0