Ayush
Ayush

Reputation: 42450

Boolean algebra simplification

I need to reduce this boolean expression to its simplest form. Its given that the simplest form contains 3 terms and 7 literals.

The expression is:

x'yz + w'x'z + x'y + wxy + w'y'z

We tried this in class, and even our recitation teacher could not figure it out.

Any help would be appreciated.

Upvotes: 2

Views: 3362

Answers (6)

Mika
Mika

Reputation: 1245

X'YZ + W'X'Z + X'Y + WXY + W'Y'Z
=  X'Y+W'X'Z+WXY+W'Y'Z      by absorption
=  WY+X'Y+W'X'Z+W'Y'Z       by absorption
=  W'Y'Z+WY+X'YZ+X'Y        by consensus
=  W'Y'Z+WY+X'Y         by absorption

Using tool at http://www.logicminimizer.com/

Upvotes: 0

Can we use groups?

w'z(x' + y') + y(x' + w)

Upvotes: 0

David Johnstone
David Johnstone

Reputation: 24450

I'm a bit rusty with boolean algebra, but I think I've worked out how to do this. I'll let you do the working, but here are the basic steps:

1) Group the terms with y and eliminate what you can inside the brackets. Once expanded again, this will leave you with four terms and ten literals.

2) Eliminate the redundant term, leaving you with three terms and seven literals.

Hint: I first worked out the answer with a Karnaugh map, and then used regular boolean algebra to get to the solution :-)

Upvotes: 1

RBarryYoung
RBarryYoung

Reputation: 56725

Like this:

x'y + wxy + w'y'z

Upvotes: 0

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798656

Quine-McCluskey reduction is one of the strongest tools for this, although it can be labor-intensive.

Upvotes: 3

Peter K.
Peter K.

Reputation: 8108

Try putting it into a Karnaugh Map.

Upvotes: 5

Related Questions