1

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.

Logical Design

Logical Expression

Lucky
  • 579
  • 6
  • 24

1 Answers1

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