Please enable JavaScript.
Coggle requires JavaScript to display documents.
LOGIC GATES/DIAGRAMS (Logical Operators (NOT (Is used to negate (or…
LOGIC GATES/DIAGRAMS
Logical Operators
NOT
Is used to negate (or change) a condition
(a)' or a'
AND
Is used to check that both of two conditions are true
(a•b)
OR
Is used to see whether either of two conditions is true
(a+b)
NAND (Not AND)
Provides the inverse of the AND operator
(a•b)'
NOR (Not OR)
Provides the inverse of the OR operator
(a+b)'
XOR (Exclusive OR)
Is used to see if only one or the other applies
(a•(b)')+((a)'•b)