what is a logical operator?
symbols used to represent circuits of transistors within a computer
what is a truth table?
a visual way of displaying all possible outcomes of a logical operator
NOT logical operator
produces an output which is opposite of the input
AND logical operator
will output 1 only if both inputs are also 1
OR logical operator
will output 1 if either input is 1
XOR logical operator
will output 1 if the inputs are different and output 0 if the inputs are the same
commutative law
A.B =
A+ B =
Idempotent law
A.A=
A+A=
Complement law
_
A.A =
_
A + A =identity law
A.1 =
A + 0 =
Annulment law
A.0 =
A + 1 =
Absorption law
A.(A+B)
A + (A.B)
Association law
A.(B.C) =
A + (B+C)=
Distribution law
A+ (B.C) =
A.(B+C) =