Boolean Logic Flashcards
What are the logic gates we cover?
NOT,
AND,
OR,
XOR
What is a truth table?
A table that shows the inputs into a boolean expression or logic circuit and provides the outputs when the inputs are on or off
What are the symbols of the logic gates we cover?
NOT: ¬
AND: ^
OR: V
XOR: ⊻
What is a K-map/Karanaugh Map?
A table that maps the inputs of a boolean expression, so that the boolean expression can be easily simplified by drawing boxes with size 2^n that can loop around the map
What is a half-adder?
A logic circuit that adds together 2 bits A and B
Sum = A⊻B
Carry = A^B
What is a full adder?
A logic circuit that adds together 3 bits, A, B and Cin
Sum = A⊻B⊻Cin
Carry = (A^B)V((A⊻B)^Cin)
What is a D-type Flip Flop?
A logic circuit that is used to hold data in a circuit so that it can be used later.
The data is stored every rising edge of the clock (low to high)