Topic 10 - boolean logic Flashcards
ka - term3 2025
Why are logic gates needed
Data in computer is stored in the form of BINARY
Computer process/run/stores in the form of electrical impulses or charges that are either absent or present
In order to process these binary bits, a system is needed - LOGIC GATES
Logic gate
an electronic circuit that relies on ‘on/off’ logic; the most common gates are
NOT, AND, OR, NAND, NOR and XOR (binary input/output)
Logic circuit
these are formed from a combination of logic gates and designed to carry out
a particular function; the output from a logic circuit will be 0 or 1
Truth table
method of checking the output from a logic circuit
lists every binary output for every possible combination of binary inputs.
Starting from the right side with one 1’s and one 0’s then double each time they move to the left. (2nd one = two 1’s, 2 0’s)
Number of outputs in a truth table
number of outputs depends on the number of inputs (2^x)
Ex) 2 input = 2^2(4) outputs, 3 input = 2^3 (8) outputs
Boolean algebra
a form of algebra linked to logic circuits and based on TRUE or FALSE
(represents logic gates)
Some basic Boolean algebras
A.B = A AND B
A+B = A OR B
NOT A = Ā
A XOR B = A ⊕ B
NOT
One with singular input
Gives the opposite value
X= 1 if A=0
AND
When both inputs are on/1 it turns on/1
X= 1 if both A & B = 1
NAND
Opposite of AND - when both inputs are on/1 it turns off/0
OR
If either gates are on/1 it turns on/1
X = 1 if either A/B =1
XOR
OR gate but turns off/0 when they are both on/1
NOR
Opposite of OR - If either gates are on/1 it turns off/0
XNOR
NOR gate but turns on/1 if both A & B are turned on/1 OR both A & B is turned off/0