Is there a way to reduce this logical expression? I map out the circuit design to logical expression but I can't find a way to reduce it more, I feel that there is a way to do so. I've tried De Morgan's law but that only changes one statement not entirely reduce it.
Asked
Active
Viewed 70 times
1
-
1Have you heard of Karnaugh Maps? They are for simplifying boolean algebra which this is. – Careful Now Mar 13 '16 at 23:22
-
Thanks. Exactly what I was looking for. – Lucky Mar 14 '16 at 01:54
1 Answers
0
There exists software for doing this. If you enter your expression into e.g. Logic Friday, you get the following simpler result: S0' L1 + S1' L1 + S0' L3 + S1' L3 + S0 S1' L2 + S0 S1 L4
Alternatively in POS form: (S1+L1+L2+L3)(S0+L1+L3)(S0'+S1'+L4)

Petter T
- 3,387
- 2
- 19
- 31