1

hi i have implemented this equation with XOR and Not gate but i'm not getting the correct answers (A.B.C)+(A'.B'.C')

What is the Problem ? thank you

pooya
  • 11
  • 3
  • There are IC's that have three input XNOR gates, i.e. the 74HC27. What's the purpose of this project? –  May 18 '19 at 06:07
  • we have to design it only with XOR and NOT gate IC's and looks like Y=(A.B.C)+(A'.B'.C') is not 3 input XNOR :( – pooya May 18 '19 at 06:17

1 Answers1

0

What you should get is an XNOR gate (Y=A'B'C'+ABC'+A'BC+AB'C) "an even number of ones". As an XOR gate will give an output that is true if and only if an "odd number of ones" is deriving it. So, inverting the XOR gate will results in an XNOR gate that will give an output which is true if and only if an "even number of ones" is deriving it.

William
  • 73
  • 10
  • So Y=(A.B.C)+(A'.B'.C') is not 3 input XNOR gate ? – pooya May 18 '19 at 05:51
  • 1
    The logic is wrong for a 3 input XNOR gate. Check this link: https://electronics.stackexchange.com/questions/285392/3-input-xnor-gate-operation – William May 18 '19 at 05:58