문제

Hi I'v solved this halfway, please help me for the rest.
so far I've got..

    x'yz + xy'z + xyz' + xyz
    z(x'y + xy') + xy(z'+z)
    z(x'y + xy') + xy

i don't understand how to solve the z(x'y + xy') part of this expression.. please somebody help..

도움이 되었습니까?

해결책

x'y + xy' is XOR. So you can simplify to z(x+y) + xy because z(x'y + xy') + xy is z when x != y and xy when x == y.

The (x+y) after z is necessary to disallow influence of z when x == y == 0.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top