Exclusive OR
Exclusive OR
The “Exclusive OR Gate” is another type of digital logic gate commonly used in
arithmetic operations since it can be used to give the sum of two binary numbers as
well as error-detection and correction circuits.
In the previous tutorials, we saw that by using the three principal gates, the AND
Gate, the OR Gate and the NOT Gate, we can build many other types of logic gate
functions, such as a NAND Gate and a NOR Gate or any other type of digital logic
function we can imagine.
But there are two other types of digital logic gates which although they are not a basic
gate in their own right as they are constructed by combining together other logic
gates, their output Boolean function is important enough to be considered as complete
logic gates. These two “hybrid” logic gates are called the Exclusive-OR (Ex-OR)
Gate and its complement the Exclusive-NOR (Ex-NOR) Gate.
Previously, we saw that for a 2-input OR gate, if A = “1”, OR B = “1”, OR
BOTH A + B = “1” then the output from the digital gate must also be at a logic level
“1” and because of this, this type of logic gate is known as an Inclusive-OR function.
The logic gate gets its name from the fact that it includes the case of Q = “1” when
both A and B = “1”.
If however, an logic output “1” is obtained when ONLY A = “1” or when ONLY B =
“1” but NOT both together at the same time, giving the binary inputs of “01” or “10”,
then the output will be “1”. This type of gate is known as an Exclusive-OR function or
more commonly an Ex-Or function for short. This is because its boolean
expression excludes the “OR BOTH” case of Q = “1” when both A and B = “1”.
In other words the output of an Exclusive-OR gate ONLY goes “HIGH” when its two
input terminals are at “DIFFERENT” logic levels with respect to each other.
An odd number of logic “1’s” on its inputs gives a logic “1” at the output. These two
inputs can be at logic level “1” or at logic level “0” giving us the Boolean expression
of: Q = (A ⊕ B) = A.B + A.B
The Exclusive-OR Gate function, or Ex-OR for short, is achieved by combining
standard logic gates together to form more complex gate functions that are used
extensively in building arithmetic logic circuits, computational logic comparators and
error detection circuits.
The two-input “Exclusive-OR” gate is basically a modulo two adder, since it gives the
sum of two binary numbers and as a result are more complex in design than other
basic types of logic gate. The truth table, logic symbol and implementation of a 2-
input Exclusive-OR gate is shown below.
B A Q
0 0 0
0 1 1
1 0 1
2-input Ex-OR Gate
1 1 0
C B A Q
0 0 0 0
0 0 1 1
0 1 0 1
0 1 1 0
1 0 0 1
3-input Ex-OR Gate
1 0 1 0
1 1 0 0
1 1 1 1
One of the main disadvantages of implementing the Ex-OR function above is that it
contains three different types logic gates OR, NAND and finally AND within its
design. One easier way of producing the Ex-OR function from a single gate is to use
our old favourite the NAND gate as shown below.
Exclusive-OR Gates are used mainly to build circuits that perform arithmetic
operations and calculations especially Adders and Half-Adders as they can provide a
“carry-bit” function or as a controlled inverter, where one input passes the binary data
and the other input is supplied with a control signal.
Commonly available digital logic Exclusive-OR gate IC’s include:
TTL Logic Ex-OR Gates
74LS86 Quad 2-input
The Exclusive-OR logic function is a very useful circuit that can be used in many
different types of computational circuits. Although not a basic logic gate in its own
right, its usefulness and versatility has turned it into a standard logical function
complete with its own Boolean expression, operator and symbol. The Exclusive-OR
Gate is widely available as a standard quad two-input 74LS86 TTL gate or the 4030B
CMOS package.
One of its most commonly used applications is as a basic logic comparator which
produces a logic “1” output when its two input bits are not equal. Because of this, the
exclusive-OR gate has an inequality status being known as an odd function. In order
to compare numbers that contain two or more bits, additional exclusive-OR gates are
needed with the 74LS85 logic comparator being 4-bits wide.
In the next tutorial about Digital Logic Gates, we will look at the digital
logic Exclusive-NOR gate known commonly as the Ex-NOR Gate function as used in
both TTL and CMOS logic circuits as well as its Boolean Algebra definition and truth
tables.