Logic Gates – How to Achieve This Logic Function Simply?

logic-gates

I need logic gate that behaves like this:

A=1, B=1, Y=1

A=0, B=0, Y=1

A=0, B=1, Y=1

A=1, B=0, Y=0

The tricky part is (A=1, B=0, Y=0) while (A=0, B=1, Y=1), AFAIK no logic gate distinquish between A or B inputs so dont think its possible with normal gate, is it possible at all?

Best Answer

I believe this is the simplest way to achieve what you are looking for:

schematic

simulate this circuit – Schematic created using CircuitLab

Edit: As KingDuken points out in the comments, this is known as an imply gate.

Related Topic