unit 8 Flashcards
(34 cards)
how are boolean operators represented as?
TRUE or FALSE
1 or 0
what does boolean logic refer to?
refers to the principles of logic based on binary values
what does boolean algebra refer to?
the mathematical system used to manipulate Boolean values
what are the different types of logic gates?
AND, OR, NOT,XOR
what is the operation AND?
A ^ B
what is the operation OR?
A v B
what is the operation/symbol for NOT?
¬A
what is the operation for XOR?
A (+) B
what is the truth table for AND?
0 0 0
0 1 0
1 0 0
1 1 1
what is the truth table for OR?
0 0 0
0 1 1
1 0 1
1 1 1
what is the truth table for NOT?
0 1
1 0
what is the truth table for XOR?
0 0 0
0 1 1
1 0 1
1 1 0
what is the purpose of a karnaugh map?
a tool used for simplifying Boolean algebra expressions
what are the rules for making groups in a karnaugh map?
make rectangular groups, as larger as possible, either 8, 4, 2, 1
groups can overlap and can wrap round
what is X AND 0?
0
What is X AND 1?
X
what is X AND A?
X
what is ¬X and X?
0
what is X OR 0?
X
what is X OR 1?
1
what is X OR A?
X
what is ¬X OR X?
1
what is De Morgan’s Law?
¬(A ^ B) = ¬A v ¬B
¬(A v B) = ¬A ^ ¬B
what is the distributive law?
A ^ (B v C) = (A^B) v (A^C)
Av(B^C) = (AvB) ^ (AvC)