Given
x’ + x(x + y’)(y + z’)
Turn it into SOP and POS form (not the Canonical ones) and without using a K-map
I have done as follows;
= x’ + x(x + y’)(y + z’)
= x’ + (x + xy’)(y+z’)
= x’ + xy’z’+ xyy’ + xz’ + xy
= x’ + xy’z’ + xz’ + xy
= x’ + xz’(y’+1) + xy
= x’ + xz’ + xy
= (x’ + x)(x’ + z’) + xy
= x’ + z’ + xy
= (x’ + x)(x’ + y) + z’
= x’ + y + z’
Now is x’ + y + z’ both the SOP and POS form of the given? Or should I have stopped midway and did another approach?
x + yzas an SOP as it is a sum of product/s and some such asz(x+y)for a POS – Tyro Oct 25 '20 at 05:01(x' + y + z')is a product of 1 so hence a product of sums as well – Tyro Oct 25 '20 at 05:03