Help with simplifying

Thread Starter

captainjapan

Joined Oct 22, 2008
2
(¬a.¬b.c.¬d)+(¬a.¬b.c.d) +(¬a.b.¬c.d)+(¬a.b.c.d)+(a.¬b.c.d)+(a.b.¬c.d)

+ = OR
. = AND
¬ = NOT

How do I simplify as much as possible?

Thanks
 

Ratch

Joined Mar 20, 2007
1,070
captainjapan,

How do I simplify as much as possible?
The first thing to do is to abandon the clunky, clumsy notation you use. Try
A'B'CD'+A'B'CD+A'BC'D+A'BCD+AB'CD+ABC'D which corresponds to maxterm numbers 2,3,5,7,11,13 . Next use a Karnaugh map, or a tabulation method like Quine-McCluskey to reduce the Boolean expression. You will then see other alternate simplifications too. Using the QM method I get:

A'B'C+B'CD+BC'D+A'CD or alternatively A'B'C+B'CD+BC'D+A'BD

Ratch
 
Top