Boolean Algebra Rules Flashcards
(6 cards)
What is De morgon’s law and use an example to show what it is.
AND / OR can be replaced by the other given changes to the equation
NOT(A OR B) == NOT A AND NOT B
What is distribution (in terms of boolean algebra) and give an example.
Allows for the multiplying or factoring out of an expression
A OR ( B AND C ) == (A OR B) AND (A OR C)
What is association (in terms of boolean algebra) and give an example.
**Allows for the removal of brackets and the regrouping of variables. **
A OR (B OR C) == A OR B OR C
what is communication (in terms of boolean algebra) and give an example.
The order of application of two seperate terms is not important
A OR B == B OR A
What is double negation ( in terms of boolean algebra) and give an example.
Double false means it is true
NOT NOT A = A
what is absorption (in terms of boolean algebra) and give an example.
A variable both outside and inside a bracket in the same expression removes the other variable
A OR ( A AND B) = A