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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is de morgans second law

A

-not(A.B) = not(A) + not(B)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly