Boolean algebra (unit 8) (Finished) Flashcards
(8.1) What are computers made of?
billions of switches that can be on or off
(8.1) How can switches in computers be used together
to create a logic gates
(8.1) What is a logic gate
Gates that take one or more inputs and output a single output
(8.1) What are the 4 main types of logic gates?
NOT
AND
OR
XOR
(8.1) What is a NOT gate
If 0 is input it outputs 1
If 1 is input it outputs 0
Triangle + ball shape
(8.1) What is an AND gate?
Both inputs have to be 1 in order to make the output 1
Otherwise the output is 0
fat semicircle shape
(8.1) What is an OR gate?
If either of the inputs are 1 then the output is 1
if both are 0 then the output is 0
Fat arrow shape
(8.1) What is an XOR gate?
exclusive or, means that only 1 of the inputs can be positive to make a positive output
Fat arrow with underlining shape
(8.1) What is a logic circuit?
The combination of multiple logic gates to create a circuit
(8.1) What is the symbol for a NOT gate?
dog leg (¬)
(8.1) What is the symbol for a AND gate?
up arrow (∧)
(8.1) What is the symbol for a OR gate?
V (∨)
(8.1) What is the symbol for a XOR gate?
Underlined V (⊻)
(8.1) How else can logic circuits be displayed?
Through Boolean expressions using symbols for the logic gates
(8.1) What is De Morgan’s first law?
¬(A ∨ B) = ¬A ∧ ¬B
NOT (A OR B) = NOT A AND NOT B