Electrical – Multiplexer with enable at a karnaugh map

boolean-algebradigital-logicmultiplexer

We have multiplexer 2->1 with reverse enable:

(sorry for the child-like graphics)

enter image description here

the function table is the following

e c Y


1 X 0

0 0 x0

0 1 x1

I tried to make a karnaugh map, but I don't know if I have to put the enable at it. So it went as something like this:

enter image description here

with the result being y = e'c'x0 + e'cx1

Did I do the map wrong?
Should I exclude the e from it?

Best Answer

E is the enable so if is exclude or include the Result will be same. And chart is shown below enter image description here

Now if you put K Map for this you find that answer as Y = C'X0 + CX1

Related Topic