To simplify the given Product-of-Sums (POS) Boolean expression, we can apply standard Boolean algebraic laws.
Given Expression:
E=(x+y′+z′)(x+y′+z)(x+y+z′)
Step 1: Group and simplify the first two terms
Look at the first two factors: (x+y′+z′) and (x+y′+z).
Notice that (x+y′) is common to both terms. We can use the Distributive Law A+BC=(A+B)(A+C), where we let A=(x+y′), B=z′, and C=z:
(x+y′+z′)(x+y′+z)=(x+y′)+(z′⋅z)
Since z′⋅z=0 (Complement Law):
(x+y′)+0=x+y′
Now, substitute this back into the main expression.
Step 2: Multiply with the third term
Our expression now simplifies to:
E=(x+y′)(x+y+z′)
We can apply the Distributive Law again. Notice that x is common to both terms (x+A)(x+B)=x+AB:
E=x+[y′⋅(y+z′)]
Step 3: Expand and simplify the remaining part
Now, distribute y′ inside the brackets:
E=x+(y′⋅y+y′⋅z′)
Since y′⋅y=0 (Complement Law):
E=x+(0+y′z′)
E=x+y′z′
Conclusion
The simplified Boolean expression matches Option 2.
Final Answer: x+y′z′