Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

Gate level logic circuit

Status
Not open for further replies.

rds1975

New Member
Can some one tell me to generate a gate level logic circuit for the below one. Iam trying to solve myself and just want to verify.


A B C Z
0 0 0 1
0 0 1 0
0 1 0 0
0 1 1 1
1 0 0 0
1 0 1 1
1 1 0 1
1 1 1 0

Thanks
 
u can use karnaugh map or quine mccluskey method to simplify ur boolean...there are few software on net for the purpose method...
 
it looks like it is as follows.

ABC' + AB'C + A'B'C' +A'BC

you can implement it with three inverters and four 3 input AND gates all ORd together.
or

You can use an exclusive OR gate on A & B send this to an equivilence gate with C.

or strangely enough
You can equivilence A & B and Exclusive OR the output with C.
 
You could also consider that to be an B exclusive-OR C, being inverted by A.
 
Status
Not open for further replies.

Latest threads

New Articles From Microcontroller Tips

Back
Top