1.4.3 Boolean Algebra Flashcards
1.4.3 A)
What are the four main logic gates
AND
OR
NOT
XOR
1.4.3 A)
What is the symbol and operation of the AND logic gate.
Conjunction
symbol - ^
1.4.3 A)
What is the symbol and operation of the OR logic gate.
Disjunction
symbol - V
1.4.3 A)
What is the symbol and operation of the NOT logic gate.
Negation
symbol - ¬
1.4.3 A)
What is the symbol and operation of the XOR logic gate. Gate look
DIsjunction
symbol - ⊻
the gate looks like a or gate with a line at the font (check notes)
1.4.3 B)
What do truth tables show
all possible permuations of in input.
1.4.3 B)
truth table for AND, where a and b are inputs and y is the output
A B Y
0 0 0
0 1 0
1 0 0
1 1 1
1.4.3 B)
truth table for OR, where a and b are inputs and y is the output
A B Y
0 0 0
0 1 1
1 0 1
1 1 1
1.4.3 B)
truth table for NOT, where a is the input and y is the output
A Y
0 1
1 0
1.4.3 B)
truth table for XOR, where a and b are inputs and y is the output
A B Y
0 0 0
0 1 1
1 0 1
1 1 0
1.4.3 B)
How do you know how many inputs are needed for a table
2^n where n is the number of inputs.
1.4.3 B)
What is the need to simplify Boolean expressions
Logic gates represent electrical circuits, so its important to use as little as possbile.
reduce size of the circuit
reduce cost
reduce power consumption
quicker execution
1.4.3 B)
Karnaugh maps
just check notes
1.4.3 C)
What is demogans law
Involves breaking a negative and dchaing the operation.
¬(A∪B)= ¬A∩¬B
¬(A∩B) = ¬A∪¬B
1.4.3 C)
What is the distribution rule
conjunction over disjunction
A^(BvC) = (A^B)V(A^C)
disjunction of conjunction
AV(BvC) = (AVB)^(AVC)
1.4.3 C)
What is the association law
(A^B)^c = A^(B^C)
(AVB)Vc = AV(BVC)
1.4.3 C)
commutation
order doesnt matter
AVB = BVA
B^A = A^B
1.4.3 C)
double negative law
¬¬ A = A
1.4.3 E)
What is a D-type flip flops
Logic circuit which can store the value of 1 bit.
1.4.3 E)
How does D-type flip flops work.
inputs and outputs
Has 2 inputs control signal and clock input. A clock is a regular pulse generated by CPU used to coordinate components.
A clock pulse rises and falls (shown in notes).
The output can only change at a rising edge. the start of a clock tick.
1.4.3 E)
What is an adder
Is a logic circuit which adds together the number of inputs.
1.4.3 E)
Half adder
Two inputs and two outputs (diagram in notes + truth table)
1.4.3 E)
Full adder
Three inputs and 2 outputs allows for a carry to be represented. (diagram in notes + truth table)