answersLogoWhite

0


Best Answer

You can use a second gate on the same IC to invert the output (most OR-gate ICs I know of have 4 gates per chip). Do this by tying the output of the first gate to both inputs of the spare gate.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

P = (!(!A+B)) + (!(A+!B))

Tie the NOR inputs together to make a NOT. Brackets indicate one output. Exclamation marks indicate inverted output. Dogpile De Morgan's NAND and NOR laws.

Hope this helps :)

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you draw EX-OR gate using NOR gate?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Movies & Television

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


Why NOR gate is called universal gate?

That title of "Universal Gate" is reserved for NAND gates because you can build all possible logic using only NAND logic . You can build even other basic logic like AND, OR and NOT using NAND.


Draw the logic circuit for a half adder using nor gates only?

ab+bc


Draw the logic diagram of 2 to 4 line decorder with only nor gates include an enable input?

draw the logic diagram of 2 to 4 line decoder decoder using nor gates include enable input


How using two-input logic gates of your choice design a circuit to determine if two 3-bit numbers are the same or different?

Three 2-input XOR gates and one 3-input NOR gate will do the work. Connect each output of each XOR gate to one input of the 3-input NOR gate and apply the two 3-bit words to the inputs of the XOR gates. If X (X2X1X0) and Y(Y2Y1Y0) are two 3-bit words, X2 and Y2 will connect to one XOR gate, X1 and Y1 to the next XOR gate and X0 and Y0 to the last XOR gate. You could see the result of the operation on a LED connected to the output of the NOR gate. Other implementations are also possible of course. The solution above is absolutely correct, but includes a 3 input gate. If the task is to use only two input gates, then a small change will be needed. Take the outputs from any two XOR gates into a 2 input OR gate. Then take the output of the OR gate and the output of the third XOR gate into a 2 input NOR gate. The operation remains identical to the first solution but adheres to the brief of using gates with 2 inputs. In the real world, there is probably no reason to impose such a limitation on a design so the first solution would normally be the preferred route to take.

Related questions

What is the flip flop draw the circuit diagrem of all flip flop and explain the working of flip flop using nor gates?

draw a logic circuit of the clocked SR flip-flop using NOR gate


Half-Subtractor circuit using NOR gates?

By using 5 NOR gates, we can implements half-subtractor. The inputs for 1st NOR gate are A and B, for 2nd NOR gate inputs are the output of 1st NOR gate and A input, for 3rd NOR gate inputs are the output of 1st NOR gate and B input, for 4th NOR gate the inputs are gates 2 and 3, and for last gate input is the output of the 4th gate.


Which logic gate have output high if and only if all inputs are low?

A nor gate provides an output of 0 when any input is 1.Nor gate provides the opposite of or gate. An or gate provides a 1 or true output when any of the inputs is 1 or true. Therefore the opposite output would be provided by a nor gate.


How can get and gate from nor gate?

an 2 input AND gate can be realize using 3 NOR gates.Let ,A and B are the input and x be the output.x=A.B= NOR(NOR(A) NOR(B))


What is universal logic gate?

universal logic gate is a gate using which you can make all the logic gates there are two such gates NOR gate and NAND gate


What is an explanation of nor gate?

1. Explain NOR gate as Universal Gate A NOR gate is a simple OR gate with an inverter (NOT gate) at the output. NOR gates are considered Universal Gates because thay can be configured in a few different ways. Connecting the inputs on a NOR gate will result in a NOT gate (inverter). Connecting the above to the output of a NOR gate results in an OR gate.


How do you design a half-adder using NOR gate?

Use 4 NOR gates. For the 1st NOR gate, inputs should be x' and y For the 2nd NOR gate,inputs should be y' and x The outputs of NOR 1 and NOR 2 are taken as inputs of NOR gate 3 The output of NOR 3 is the complemented form of the output required, so, just complement the output of NOR gate 3 with another NOR gate and Viola!, you have your HALF ADDER OUTPUT PS:I have used a double rail logic, where both x:x' and y:y' are available


How many two input NAND gates are required to implement a four input NAND gates?

NOR gate = not(A or B) = A nor BAND gate = A and BAND gate = not(not A or not B)AND gate = not(not(A or A) or not(B or B))AND gate = (A nor A) nor (B nor B)Therefore using 2 input NORs to make a 2 input AND you need three NORs. If you wanted something different (e.g. a 5 input AND) the above proof can be modified appropriately to get your answer.


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


Draw x-nor using nand gate?

Z = ¬( ¬(A * B) * ¬( ¬(A * A) * ¬(B * B) ) The above requires 5 NAND gates, but it has race conditions that may give problems in some applications. See if you can reduce the race conditions.


Why nand gate is preferred when compared to nor gate?

b'coz t mobility of electrons in NAND gate is 3 times higher than that of NOR gate


Can an AND gate be formed by using two OR gates?

AND gate is A.B If two not gates are added at both inputs of and gate then output becomes A'.B' which is equal to (A+B)' by DeMorgan's law. hence the nor gate is formed Update: Put more simply, invert A and B by attaching A to both inputs of one NOR and attaching B to both inputs of another NOR, then NOR the results of the previous two NOR gates. Total of three NOR gates in a two-level implementation. NAND can obviously be created by inverting the result.