Prove This Bool Expression

53 Views Asked by At

Prove $x'z+xyz+xy'z=z$ can you show how you solve this using Boolean Algebra.

My main problem is when I do this $xz (y + y') = 1 $ So $1$ times $x =$ ?

2

There are 2 best solutions below

0
On BEST ANSWER

$$ x'z + xyz + xy'z = z $$ $$ x'z + xz (y + y') \ // AssociationRule$$ $$ x'z + xz * 1 \ // \ a + a' = 1; a * 1 = a $$ $$ z (x'+x) \ // \ a + a' = 1$$ $$ z * 1 \ // \ a * 1 = a $$ $$ z $$

0
On

How about simply $$ \begin{eqnarray} x'z + xyz + xy'z &=& (x'+xy+xy')z \\ &=&(x'+x(y+y'))z \\ &=&(x'+x)z \\ &=& z, \end{eqnarray} $$ using the distributive laws and $x+x'=1$.