0

For the following figure:

NOR gate circuit

what is the ouput if
a) both inputs are low
b) if one input is high and one low
c) does the circuit act like an OR or AND gate

I understand that the output for the first part of the circuit is 1 if both inputs are low only. I am confused about the connection between the first and second part of the circuit.

celtschk
  • 43,384
julian
  • 1
  • The second circuit just has the same input on both ports, that is, it is either both zero or both one. – Moo Feb 06 '17 at 22:00
  • The output of the first gate is connected to both inputs of the second gate. Where exactly is your confusion? – celtschk Feb 06 '17 at 22:00
  • I just wanted to reaffirm that was the case @celtschk. So if the output is 1, then that is the input for both a and b in the next part of the circuit? – julian Feb 06 '17 at 22:02
  • @julian: Exactly. – celtschk Feb 06 '17 at 22:04
  • Hint: think of the first $NOR$ as an $OR$ followed by a $NOT$. Then $Y$ is $A;OR;B$ negated twice. – dxiv Feb 06 '17 at 22:22

1 Answers1

0

By low, I assume you mean zero ? A nor gate gives one when both inputs are zero & gives zero in the 3 other possible cases. So the answer to a) is high & b)is low. The output from the first NOR gate will be $A$ NOR $B$, this will then be the inputs for both sides of the next NOR gate & so a formula for Y is given by \begin{eqnarray*} Y = (A \ NOR\ B) \ NOR\ (A \ NOR\ B) \end{eqnarray*} Now make a truth table for this & you will be able to rapidly conclude that it is the same as an OR gate.

Donald Splutterwit
  • 36,613
  • 2
  • 26
  • 73