Solve Boolean Algebra Problem: Output 1 for Numbers > 9 | IC Design Tips

AI Thread Summary
The discussion revolves around simplifying a Boolean expression for an integrated circuit (IC) that outputs a 1 when the input number exceeds 9. The original expression presented is AB'CD' + AB'CD + ABC'D' + ABC'D + ABCD' + ABCD, which the user is struggling to reduce. Suggestions include using a Karnaugh map for simplification and grouping terms with (X + X') to eliminate variables effectively. Participants emphasize the importance of rewriting terms to facilitate the reduction process. The conversation concludes with an encouragement to share the simplified equation for further verification.
mr_coffee
Messages
1,613
Reaction score
1
Boolean algebra problem!

Hello everyone 'im designing a IC that will tell output a 1 if the number is > 9. so I wrote this boolean expression but I'm stuck on reducing it.
B' = B compelemnted
AB'CD' + AB'CD + ABC'D' + ABC'D + ABCD' + ABCD
AB'(CD' + CD) + AB(C'D' + C'D + CD' + CD)
any hints? thanks!
 
Physics news on Phys.org
re

If my karnaugh map is not rusty, i got

AB + AC
 
*ab'cd' + Ab'cd + Abc'd' + Abc'd + Abcd' + Abcd
*ab'c(d'+d) +abc'(d'+d) + Abc(d'+d)-----> (d+d') =>1
*ab'c + Abc' + Abc
*a(b'c+bc') +abc
*a[b Xor C + Bc]
 
The answer that 'waht' got is the correct one (a mapping easily shows that). I don't think though that I should do the actual Boolean equation for you, but I'll give you a couple of hints. Group as many of the "AND" terms together with (X + X') terms, to eliminate as much as you can to start. Then remember that you can take something like: "XYZ +..." and make it "XYZ + XYZ + ...". In other words, writing a term twice in an equation doesn't change anything. It can make it easier to work out. If you try these, you should get the answer to your original equation. Then let us see it and we'll check it for you.

KM
 
Back
Top