answersLogoWhite

0


Best Answer

You can't make XOR out of NOT alone. Mathematically, NOT takes only a single argument, and its gate, an inverter, takes a single input. There's no way to combine two inputs giving a single output with one input gates. You need some two input gates to do the job. They can be AND, OR, NAND, NOR, or some combination, but you need something. That said, they don't have to be IC gates; you can combine two inputs with diodes to make an OR gate, so you could make XOR with only inverters and diodes, i.e. no other gate symbols on your schematic, but it would mot be making XOR out of NOT.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you convert not gate to ex or gate?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How full adder convert to full subtractor?

simply by complementing x input before applying to and gate for generating carry


How do you convert OR gate to NAND gate?

A+b=


Which gate is used for binary to grey?

EX-OR Gate


How many min NAND gate is used to make one EX-OR gate?

4


How will you convert AND gate from NAND?

A: A AND gate becomes a NAND when the output is merely negated or inverted


What gate is used to compare two binary number?

ex or gate because if both bit is same output is zero


How exclusive or gate is converted in not gate?

one terminal of the ex-or gate should be connected to a high input(1 or 5V). the other terminal is used as the input terminal,since not gate has only one input.when we give a high to this input, now the inputs of exor gate are 1 & 1.so output is 0.when we give a low to the input , then the inputs of ex-or gate are 0 and 1, output is 1. Hence it works as a controlled inverter.


How to convert nor GATEto not gate?

This is made by joining the inputs of a NOR gate. As a NOR gate is equivalent to an OR gate leading to NOT gate, this automatically sees to the "OR" part of the NOR gate, eliminating it from consideration and leaving only the NOT part. Truth Table Input A Output Q 0 1 1 0


How do you convert fladder 3 .ex file to bin file?

fladder 3 .ex file to bin


What does leave your feelings at the gate mean?

It means do not get emotionally attached/involved. For example, if you are part of a jury on a trial, you need to "leave your feelings at the gate". Another example may be, being friends with an ex spouse.


How do you convert from natural log to numerical values by taking the exponetial?

If: Ln(A) = X Then: A = ex


How do you write the Boolean expression for XOR gate?

For 2-input EX-OR gate, if one input is A, the other input is B, and the output is Y. Then the Boolean expression for EX-OR (XOR) function (gate) is Y=A⊕B The output Y is true if either input A or if input B is true, but not both.Y= ( (A and NOT B) or (NOT A and B) ) ;