XNOR Gate, exclusive nor gate, XNOR in Proteus, Proteus Implementation of XNOR, Logic Gates

Hello Mentees!, I hope you have a productive day. Welcome to The Engineering Projects. In the previous lecture, we discussed the XOR Logic Gate and designed its circuit using basic logic gates i.e. AND, OR and NOT. Today, I am going to explain another Logic Gate named XNOR Gate in detail.

We are going to discuss these concepts in today's lecture:

  1. What are Exclusive NOR Gates
  2. Experimental Proof in Proteus ISIS.
  3. How Truth Table of Exclusive NOR Gate is designed.
  4. How is its Timing Diagram?
  5. Circuit of Exclusive NOR Gate in Proteus Simulation
  6. Applications of Exclusive NOR Gates

XNOR Gate

  • The exclusive NOR Gate(also called XNOR Gate) simply inverts the output of the XOR Gate(we discussed in the last lecture).
  • So, if we simply place a NOT Gate in front of the XOR Gate, we will get the XNOR Gate.
  • The XNOR Gate is denoted by a plus sign with a circle around it between the inputs and a collective Complement or a Bar on the Expression.
  • The symbolic representation of XNOR along with symbol and expression is shown in the below figure:
XNOR Gate, exclusive nor gate, XNOR in Proteus, Proteus Implementation of XNOR, Logic Gates
  • The Truth Table of XNOR Gate is given next:
A B Y
0 0 1
0 1 0
1 0 0
1 1 1

Mathematical Expression of XNOR Gate

The XNOR Gate with 2-inputs(A and B) and 1 Output(Z) is represented by the following mathematical expression:

Z = (A)'.(B)' + A.B

So, we will need AND, OR and NOT logical gates to implement XNOR Gate. Let's first verify this equation by applying the truth table.

For 1st Row:

=(0)'.(0)'+0.0

=1.1+0.0

=1+0

=1

For 2nd Row:

Now, A=0, B=1

=(0)'.(1)'+0.1

=1.0+0.1

=0+0

=0

For 3rd Row:

Consider A=1, B=0:

=(1)'.(0)'+1.0

=0.1+1.0

=0+0

=0

For 4th Row:

Lastly, A=1, B=1:

=(1)'.(1)'+1.1

=0.0+1.1

=0+1

=1

Hence in accordance with the above discussion, let's design the circuit of the XNOR Gate in the Proteus software:

Proteus Simulation OF XNOR Gate

Now let's design the Proteus Simulation of the XNOR gate. We simply need to implement the mathematical expression of XNOR Gate, discussed in the last section.

Material Required:

  1. AND Gate
  2. OR Gate
  3. NOT Gate
  4. Logic Toggle
  5. LED

Circuit Diagram of XNOR Gate:

First of all, we will design the below circuit in Proteus:

Image

As you can see in the above figure, the first AND Gate is getting the inverted inputs and the second AND Gate is provided with simple inputs. Finally, the output of both AND gates is passed through the OR Gate and we got our XNOR output. I have placed an LED at the output to visualize it.

Applications of XNOR Gate

XOR Gate is used in many circuits as:
  1. We use XOR Gate in digital circuits.
  2. It is used in error-detecting Circuits.
  3. XOR is also used in Arithmetic Circuits.
  4. Encryption Circuits is the application of XNOR Gate.
  5. The combinational circuit is made through XNOR Gate.
  6. XNOR is used in sequential Circuits.
  7. Circuit of Binary to Grey and vice versa.
Today we saw discussed the Exclusive NOR Gate(XNOR Gate) in detail. We have also designed its simulation using AND, OR and NOT logic gates. Till the next tutorial, take care!!!