Chapter 18 Boolean Algebra and Logic Circuits Flashcards
State the ‘Annulment’ Law for both AND/OR
AND Version • A ^ 0 = 0 • A . 0 = 0 OR Version • A v 1 = 1 • A + 1 = 1
State the ‘Identity’ Law for both AND/OR
AND Version • A ^ 1 = A • A . 1 = A OR Version • A v 0 = A • A + 0 = A
State the ‘Idempotent’ Law for both AND/OR
AND Version • A ^ A = A • A . A = A OR Version • A v A = A • A + A = A
State the ‘Complement’ Law for both AND/OR
AND Version • A ^ ¬A = 0 • A . ¬A = 0 OR Version • A v ¬A = 1 • A + ¬A = 1
State the ‘Double Negation’ Law
¬(¬A) = A
State the ‘Associative’ Law for both AND/OR
AND Version • (A ^ B) ^ C = A ^ (B ^ C) • (A . B) . C = A . (B . C) OR Version • (A v B) v C = A v (B v C) • (A + B) + C = A + (B + C)
State the ‘Commutative’ Law for both AND/OR
AND Version • A ^ B = B ^ A • A . B = B ^ A OR Version • A v B = B v A • A + B = B + A
State the both version of the ‘Distributive’ Law
First Version • A ^ (B v C) = (A ^ B) v (A ^ C) • A . (B + C) = (A . B) + (A . C) Second Version • A v (B ^ C) = (A v B) ^ (A v C) • A + (B . C) = (A + B) . (A + C)
State the both version of the ‘Absorptive’ Law
First Version • A ^ (B v C) = A • A . (B + C) = A Second Version • A v (B ^ C) = A • A + (B . C) = A
State the both version of the ‘De Morgan’s’ Law
First Version • ¬(A ^ B) = ¬A v ¬B • ¬(A . B) = ¬A + ¬B Second Version • ¬(A v B) = ¬A ^ ¬B • ¬(A + B) = ¬A . ¬B
Youtube Video with logic circuit representation of all boolean algebra laws and Image of all Boolean Algebra Laws
- YT vid: https://www.youtube.com/watch?v=EPJf4owqwdA
* Image: https://drive.google.com/file/d/1AERcZmNuuCFX6kuvxOqfS4I9dY8YbwnY/view?usp=sharing
What does ‘Boolean Addition’ correspond to in terms of a singular logic gate
Truth Table of an OR Gate
What does ‘Boolean Multiplication’ correspond to in terms of a singular logic gate
Truth Table of an AND Gate
What does De Morgan’s Theorem state
The complement of the product of two variables equals the sum of their complements
In depth description and explanation about De Morgan’s law
https://www.youtube.com/watch?v=ZyCzgqijpmM&list=PLTd6ceoshprcTJdg5AI6i2D2gZR5r8_Aw&index=3
What is a ‘Karnaugh Map’
• Special form of a truth table which enables easier
pattern recognition
• Pictorial method of simplifying Boolean expressions
• Good for circuit designs with up to 4 variables