1.4.3 Boolean Logic Flashcards
What is a Boolean?
A single True or False value– 1 or 0.
What is Boolean Algebra?
A way of planning the outcomes of
Booleans.
What is a Truth table?
A list of the outcomes of a Boolean
circuit.
What is the character symbol for XOR gate?
V
_
What are Boolean Circuits?
Boolean symbols connected together.
What are 2 aims of Simplifying Boolean Algebra?
Simplify! Ideally to 0 or 1
* Reduce the number of inputs and
operators.
What Law is this?
A v ¬A
A ^ ¬A
Complement Law
What Law is this?
A v 1
A ^ 0
Annulment Law
What Law is this?
A v 0
A ^ 1
Identity Law
What Law is this?
A v A
A ^ A
Idempotent Law
What Law is this?
¬¬A
Double Negation Law
What Law is this?
A v B = B v A
A ^ B = B ^ A
Commutative Law
What Law is this?
¬(A v B) = ¬A ^ ¬B
¬(A ^ B) = ¬A v ¬B
De Morgan’s Law
What Law is this?
A v (B v C) = (A v B) v C
A ^ (B ^ C) = (A ^ B) ^ C
Associative Law
What Law is this?
(A ^ B) v A = A
(A v B) ^ A = A
Absorbtion Law