是还是:
!(a或b)
!a或!b
!(a和b)
其他什么?
答案 0 :(得分:16)
!(a或b)
请参阅http://en.wikipedia.org/wiki/Logical_NOR了解更多信息:
在boolean logic中,逻辑或或联合拒绝是一个真值函数运算符,它产生的结果是logical or的否定。也就是说,当p和q都不为真时,形式( p NOR q )的句子都是正确的 - 即。当 p 和 q 都为假时。在grammar中,也不是是coordinating conjunction ...
答案 1 :(得分:10)
答案 2 :(得分:8)
NOR(a, b)
被定义为NOT(OR(a, b))
,其中缀为!(a or b)
。截至De Morgan's Laws,这也相当于(!a) and (!b)
。
答案 3 :(得分:5)
您的第一个选择:!
(a或b)
恰好相当于!a和!b
答案 4 :(得分:5)
((a NAND a) NAND (b NAND b)) NAND ((a NAND a) NAND (b NAND b))
如果你想成为电路制造友好的话。 :)