Question:medium

Consider the following Boolean expression. \[ F = (X + Y + Z)(\overline{X} + Y)(\overline{Y} + Z) \] Which of the following Boolean expressions is/are equivalent to $\overline{F$ (complement of $F$)?}

Show Hint

To find equivalent Boolean expressions, first compute the complement using De Morgan's laws and then simplify using absorption and distributive properties.
Updated On: Jan 30, 2026
  • $(\overline{X} + \overline{Y} + \overline{Z})(X + \overline{Y})(Y + \overline{Z})$
  • $X\overline{Y} + \overline{Z}$
  • $(X + \overline{Z})(\overline{Y} + \overline{Z})$
  • $X\overline{Y} + Y\overline{Z} + \overline{X}\,\overline{Y}\,\overline{Z}$
Show Solution

The Correct Option is B, C, D

Solution and Explanation

Step 1: Find the complement of the function.
Given:

F = (X + Y + Z)(X + Y)(Y + Z)

Taking complement and applying De Morgan’s theorem:

F = (X + Y + Z) + (X + Y) + (Y + Z)

= (X Y Z) + (XY) + (YZ)


Step 2: Match with the given options.

Option (B): XY + Z
This expression is obtained from the above form using absorption laws, hence it is equivalent.

Option (C): (X + Z) (Y + Z)
On expansion, this reduces to the same sum-of-products form as F, so it is equivalent.

Option (D): XY + YZ + X Y Z
This matches exactly with the derived expression for F.


Step 3: Reject the incorrect option.
Option (A): Does not simplify to the obtained Boolean expression and is therefore not equivalent.


Final Conclusion:
The Boolean expressions equivalent to F are (B), (C), and (D).

Was this answer helpful?
0