shape of AND gate and AND symbol
shape = D
symbol = ^
shape of NOT gate and NOT symbol
shape = triangle
symbol = ¬
shape of OR gate and OR symbol
shape = curved triangle thing
symbol = v
shape of XOR gate and XOR symbol
shape = OR gate with extra line
symbol = v̲
what is de Morgan’s first law
¬(A v B) = ¬A ^ ¬ B
what is de Morgan’s second law
¬(A ^ B) = ¬A v ¬B
what are the 8 general rules of boolean algebra
X ^ 0 = ?
0
X ^ 1 = ?
X
X ^ X = ?
X
X ^ ¬X = ?
0
X v 0 = ?
X
X v 1 = ?
1
X v X = ?
X
X v ¬X = ?
1
what are the commutative rules
simplify, reorganise or expand X ^ Y = ? and name the rule used
Y ^ X
commutative
simplify, reorganise or expand X v Y = ? and name the rule used
Y v X
commutative
simplify, reorganise or expand ¬(A v B) = ? and name the rule used
¬A ^ ¬ B
de Morgan’s first law
simplify, reorganise or expand ¬(A ^ B) = ?and name the rule used
¬A v ¬ B
de Morgan’s second law
what are the associative rules
simplify, reorganise or expand X ^ ( Y ^ Z) = ? and name the rule used
(X ^ Y) ^ Z
associative
simplify, reorganise or expand X v ( Y v Z) = ? and name the rule used
(X v Y) v Z
associative
what are the distributive rules