数字逻辑之逻辑符号

2019-11-2914:06:52 评论 2,449 views

刚刚接触电路的逻辑,老是把各种逻辑运算搞混淆,我以己之需写个总结,希望也能帮助到你。

1.与:只要AB里其中一个为0,则F为0
file
file

2.或:只要AB里其中一个为1,则F为1
file
file

3.非:输入1则输出0,输入0则输出1

file

4与非:当AB中其中有一个为0,则输出为1
file

5.或非:当AB中其中一个为1时,输出为0
file

6.与或非:
file

7.异或:(exclusive OR)符号表示为:a⊕b = (¬a ∧ b) ∨ (a ∧¬b)

       AB值相同,则异或结果为0,AB值相异,则异或结果为1

file
file

8.同或: a⊙b=(a∧b)∨(¬a∧¬b)

       AB值相异,则同或结果为0,AB值相同,则同或结果为1

file
file

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: