Question:

How do you change these simple equations into logic circuits?

by  |  earlier

0 LIKES UnLike

X = C'D + CD

x = c XOR d

Y = B'D

Using This Truth Table

INPUTS OUTPUTS

D C B A X Y

0 0 0 0 0 1

0 0 0 1 0 1

0 0 1 0 0 0

0 0 1 1 0 0

0 1 0 0 1 1

0 1 0 1 1 1

0 1 1 0 1 0

0 1 1 1 1 0

1 0 0 0 1 0

1 0 0 1 1 0

1 0 1 0 1 0

1 0 1 1 1 0

1 1 0 0 0 X

1 1 0 1 0 X

1 1 1 0 0 X

1 1 1 1 0 X

I have produced Karnaugh Maps i just don't know how to turn an expression into a circuit.

Thanks to all that can help.

 Tags:

   Report

1 ANSWERS


  1. Greetings

    x = c'd + cd = (c' + c)d = 1*d = d

    x = cd' + c'd

    combining the above for x

    x = cd' + c'd + d

    = cd' + (c' + 1)d

    = cd' + d

    y = b'd

    Translating into circuits ... you need 2 AND gates, 2 NOT gates and 1 OR gate

    Regards

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.