4.6: section 4: hardware and software: Logic gates and Boolean Flashcards
1
Q
what is de morgans first law
A
-not(A) . not(B) = not(A+B)
2
Q
what is de morgans second law
A
-not(A.B) = not(A) + not(B)
3
Q
what are the 5 general Boolean laws
A
- double negation
- not(not(X)) = X
complement law
- X+ not(X)=1
- X. not(X)=0
- idempotent law
- X.X=X
- X+X=X
- identity law
- X.1=X
- X+0=x
- annulment law
- X.0=0
- X+1=1
4
Q
what are the 4 main Boolean laws
A
-commutative
x.y=y.x
x+y=y+x
-associative
x.(y.z)=(x.y).z
x+(y+z)=((x+y)+z
-absorption
x+(x.y)=x
x.(x+y)=x
- distributive
x. (x+z)=(x.x)+(x.z)