Given the three variable Karnaugh Map:
x\yz 00 01 11 10
\___________________
0 | 0 1 1 0
1 | 1 0 0 1
I am supposed to write a simplified expression for the Boolean function. Based on this KMap, I figured there should be 2 terms after simplified. I can't figure out how to simplify them though. Here is what I'm stuck at:
F(xyz) = x(yz)' + x'(yz) + (xy)'z + (xy)z'