3 input XOR gate using NAND gate only ( Logic )

In summary, the conversation discusses the use of NAND gates to get the XOR gate of two inputs, A and B. The output of the first NAND gate is (AB)', the output of the second NAND gate is (A'B), and the output of the third NAND gate is (AB'). The final output of the circuit is ((A'B).(AB'))' which is equivalent to AB' + A'B. The truth table for the XOR gate is also mentioned. The conversation then delves into using NAND gates to implement active high and active low logic, and the role of an inverter in this process. Finally, there is a discussion on how to find the output at each NAND gate in a circuit, with the example shown for X
  • #1
i_madini
4
0
We can use NAND gate only to get ( XOR gate ) of 2 input ( A and B ) :

By using (4) NAND gate :

The output of 1'st NAND : (AB)'

The output of 2'nd NAND : ((AB)'.A)' = (A'B)

The output of 3'rd NAND : ((AB)'.B)' = (AB')

The output of the hole circuit will be: ((A'B).(AB'))' = AB' + A'B ( Which is an XOR gate )

The truth table of ( XOR gate ) is:

00 0
01 1 A'B
10 1 AB'
11 0

What about in case of 3 input ( A, B, and C ) ?!

I Know the output should be by using (8) NAND gates :

000
001 (A'B'C)
010 (A'BC')
011
100 (AB'C')
101
110
111 (A'B'C')

Y= (A'B'C)+(A'BC')+(AB'C')+ (A'B'C')

But how to drive it ? I mean the output at each NAND ?


Any HELP !
 
Physics news on Phys.org
  • #2
i_madini said:
Y= (A'B'C)+(A'BC')+(AB'C')+ (A'B'C')

But how to drive it ? I mean the output at each NAND ?

I am going to tell you a secret that I haven't seen formally taught in textbooks. I'd like to hear if anyone knows differently.

It's about understanding active high and active low logic.

A NAND gate, when drawn, looks like an AND with a bubble on the output. This is because it takes two active high inputs (no bubbles), ANDs them and generates an active low output (a bubble). Active high means 1s are high voltage and 0s are low voltage. Active low means 1s are low voltage and 0s are high voltage. You can see this from the truth table, which works on voltages:

A B NAND
0 0 1 (0 active low)
0 1 1 (0 active low)
1 0 1 (0 active low)
1 1 0 (1 active high)

See how it's just a straight AND gate if you interpret the output voltages as active low logic? So when you draw the NAND circuit symbol, you can interpret it as performing AND with active high inputs and active low outputs.

We can also apply DeMorgan's Law to a NAND gate. !(A AND B) = !A OR !B

The meaning of this: take two active low inputs OR together to make an active high output.

We're still using the NAND gate to implement this function so we still have the same truth table but this time we are going to interpret the high and low voltages differently:


A B NAND
0 (1 active low) 0 (1 active low) 1 (active high)
0 (1 active low ) 1 (0 active low) 1 (active high)
1 (0 active low) 0 (1 active low) 1 (active high)
1 (0 active low) 1 (0 active low) 0 (active high)

Just by interpretting the inputs to the NAND gate as active low and the output as active high, using the *same* gate we have found an OR function.


The last missing ingredient is an inverter, which is simply tying both inputs together (check with a truth table).


So now with a NAND gate we can make inverters, OR, AND if we interpret the voltage levels appropriately (active high or active low) and this can be summarized with graphical circuit symbols.

AND:

Draw an AND gate with no bubbles on the input and a bubble on the output (ie the usual NAND symbol). The interpretation is active high inputs are ANDed together to form an active low output.

OR:

Draw an OR gate with bubbles on both inputs and no bubble on the output. The interpretation is two active low inputs are ORed together to form an active high output.

NOT:

Draw like a regular inverter. The inverter is the same in active low or active high logic; you can draw the bubbles on either side of the buffer symbol.


It may sound confusing at first but an actual application will show how easy it is. The implementation strategy being used is called pushing bubbles around the circuit.

Your equation:


Y= (A'B'C)+(A'BC')+(AB'C')+ (A'B'C')

We are ORing together four things. You only have two input NAND gates so you need to use two gates to OR two things and then another gate to OR the results together. A nand OR gate looks like an OR gate with bubbles on the input and no bubbles on the output. I have attached a really bad drawing of four terms A,B,C,D being ORed together using NAND gates.

The top drawing, I have not connected the last OR gate because there is an active high / active low incompatibility. The outputs from the first OR gate are active high but the inputs to the last OR gate are active low. So what I did was push the bubbles through the first OR gates to make a NAND gate with a bubble on the output. Now I can connect that last OR gate because the logic levels are correct. Changing the OR to NAND is allowed because the same NAND gate does both, logically; in the process of changing the symbol I have changed the inputs to active high logic. But I need the inputs to be active low to implement the correct function. So I have put bars over them to indicate they are active low. The bars can indicate /A active high or A active low.

See if you can proceed from there and fill in the rest for A,B,C,D.
 

Attachments

  • bubbles.png
    bubbles.png
    2.3 KB · Views: 2,794
Last edited:
  • #3
Thank you, Sir.

I really appreciate it ..

And that little secret is so helpful to switch between gates ..

But what I'm interesting in is to find the output at every single NAND gate ..

Starting from X1, X2, X3, X4, X5, X6, X7, and Y.

These X's is shown in attachment.

I'm stuck at,

X5: (( AB' + A'B ) . ( C ) )' = ?


Again, Thanks a lot.
 

Attachments

  • IMAG0229.jpg
    IMAG0229.jpg
    9.7 KB · Views: 2,951
  • #4
I thought you were trying to implement a three input XOR gate from your truth function using NANDs? Y= (A'B'C)+(A'BC')+(AB'C')+ (A'B'C')

Or are you trying to analyze your circuit? With your circuit I can see the same gates are repeated from X5 on. So if up to X4 is XOR, then the whole thing is XORing three inputs. I'd slice the circuit after X4, show what the output to X4 is, see that X5 on is the same function and put them together.

I see you have a NAND implementation for XOR of two inputs...you can always use three XOR gates to implement XOR for three inputs but the implementation won't necessarily be optimal.
 
  • #5


I would first like to commend you on your creative use of NAND gates to create a 3-input XOR gate. This is a great example of using logical thinking and problem-solving skills in circuit design.

To answer your question about how to drive the output at each NAND gate, we can look at the truth table for a 3-input XOR gate:

A B C | Y
0 0 0 | 0
0 0 1 | 1
0 1 0 | 1
0 1 1 | 0
1 0 0 | 1
1 0 1 | 0
1 1 0 | 0
1 1 1 | 1

From this truth table, we can see that the output Y is 1 in four cases (when A=0, B=1, C=0; A=0, B=0, C=1; A=1, B=0, C=1; A=1, B=1, C=0) and 0 in the other four cases.

To drive the output at each NAND gate, we can use the following logic:

For the first NAND gate, the output will be (A'B'C)' since it is the inverse of the first row of the truth table (when Y=0).

For the second NAND gate, the output will be ((A'B'C)'.A)' = (A'B) since it is the inverse of the second row of the truth table (when Y=1).

For the third NAND gate, the output will be ((A'B'C)'.B)' = (AB') since it is the inverse of the third row of the truth table (when Y=1).

For the fourth NAND gate, the output will be ((A'B'C)'.C)' = (A'B') since it is the inverse of the fourth row of the truth table (when Y=0).

For the fifth NAND gate, the output will be (((A'B'C)'.A)'.B)' = (A'B'C) since it is the inverse of the fifth row of the truth table (when Y=1).

For the sixth NAND gate, the output will be (((A'B'C)'.A)'.C)' = (A'BC') since it is the inverse of the sixth row of the truth table (when Y=0).

For
 

1. What is a 3 input XOR gate using NAND gate only?

A 3 input XOR gate using NAND gate only is a type of logic gate that takes in three inputs and produces an output based on the exclusive OR (XOR) operation. This means that the output will be 1 if an odd number of inputs are 1, and 0 if an even number of inputs are 1.

2. How is a 3 input XOR gate using NAND gate only different from a regular XOR gate?

A regular XOR gate uses a combination of AND, OR, and NOT gates to produce its output, while a 3 input XOR gate using NAND gate only uses only NAND gates. This means that it has a simpler design and requires fewer components.

3. What are the advantages of using a 3 input XOR gate using NAND gate only?

One advantage of using this type of gate is that it has a simpler design, which can lead to cost savings in terms of materials and production. It also has a faster response time compared to a regular XOR gate, making it useful in applications where speed is important.

4. Can a 3 input XOR gate using NAND gate only be used in practical applications?

Yes, this type of gate can be used in various practical applications such as in digital circuits, computer processors, and communication systems. It is particularly useful in error detection and correction, as well as in encryption and decryption operations.

5. Are there any limitations to using a 3 input XOR gate using NAND gate only?

One limitation of using this type of gate is that it can only handle three inputs, while a regular XOR gate can handle multiple inputs. It also has a limited output range, as it can only produce 0 or 1 as its output. Additionally, it may not be suitable for more complex logic operations that require a combination of AND, OR, and NOT operations.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
2
Views
4K
  • Engineering and Comp Sci Homework Help
Replies
4
Views
3K
  • Engineering and Comp Sci Homework Help
Replies
9
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
16
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
6K
  • Engineering and Comp Sci Homework Help
Replies
4
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
7
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
25K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
8K
Back
Top