1.4.3 Boolean Algebra Flashcards
How can problems be defined?
Using boolean logic in boolean equations
What results can come from a boolean equation?
True
False
What is the name given to the conjunction operation?
AND
What is the symbol given to the conjunction operation?
ʌ
What is the shape given to the conjunction operation?
D
What is the name given to the disjunction operation?
OR
What is the symbol given to the disjunction operation?
V
What is the name given to the negation operation?
NOT
What is the symbol given to the negation operation?
¬
What is the shape given to the negation operation?
▷
What name is given to the exclusive disjunction operation?
XOR
What symbol is given to the exclusive disjunction operation?
V̲
What is a truth table?
A table showing every possible combination of inputs to a logic gate and corresponding output
How are boolean equations made?
By combining boolean operators
What is a Karnaugh map?
A method of simpiflying boolean expressions
Describe how boolean expressions can be simplified using Karnaugh map.
Write truth table as a Karnaugh map
Highlight groups of 1s in map
Remove variables which change within rectangles
Keep variables which do not change
How can expressions be simplified using De Morgan’s Law?
¬(A ʌ B) = ¬A v ¬B
¬(A v B) = ¬A ʌ ¬B
How can expressions be simplified using Distribution Law?
A ʌ (B v C) = (A ʌ B) v (A ʌ C)
A v (B ʌ C) = (A v B) ʌ (A v C)
A ʌ (B ʌ C) = (A ʌ B) ʌ (A ʌ C)
A ʌ (B v C) = (A v B) v (A v C)
How can expressions be simplified using Association Law?
(A ʌ B) ʌ C = A ʌ (B ʌ C) = A ʌ B ʌ C
(A v B) v C = A v (B v C) = A v B v C
How can expressions be simplified using Commutation Law?
A v B = B v A
A ʌ B = B ʌ A
How can expressions be simplified using Double Negation Law?
¬¬A = A
What is the purpose of a D-type flip flop?
To store the value of a single bit
When is the stored value in a D-type flip flop updated?
On the rising edge of the clock signal
Which logic gates are used in the logic circuit of a D-type flip flop?
4 NAND gates