Off. Inputs and Outputs
Off. Inputs and Outputs
OR GATE
An OR gate is a digital logic gate that gives an output of 1
when any of its inputs are 1, otherwise 0.
LOGIC SYMBOL FOR “OR” GATE
NOT GATE
A NOT gate, often called an INVERTER. it has just one
input and output. If the input is 1, the output will be 0 and
if the input is 0 then the output will be 1.
LOGIC EQUATIONS
Symbolic logic uses values, variables and operations;
TRUE is represented as 1 while FALSE as 0.
Variables are represented by letters and can have one or
two values, either 0 or 1.
Operations are functions of one or more variables.
OR GATE EQUATION
The OR gate operation can also be expressed by a Boolean
algebra equation. For a 2-input OR gate, the equation is:
X= A+B
The symbol for the OR operation is a +. It does not mean
addition. The expression reads X equals to A or B.
NOR GATE
A NOR gate is the combination of both an OR gate and
NOT gate. It operates the same as an OR gate, but the
output will be the opposite.
The NOR gate is a logic gate that outputs 1 (true) when
both of its inputs are 0 (false). That means that if at least
one of its inputs is 1 (true), the output will be 0.
The best way to remember a NOR operation is "neither
one or the other, nor both."
X=A+B
The expression is the same as the OR gate with an over
bar above the entire portion of the equation representing
the input. This equation read X equal to A or B NOT,
which simply means that the output of the gate is not a
logic 1 when A or B are in their 1 states.
XOR GATE
The XOR (exclusive – OR) gate acts in the same way as
the logical “either or”. The output is “True” if either but
not both, of the inputs are “true”. The output is “false” or
if both inputs are “true”.