Simplify the expression: $((XY+X')\oplus (Y+YZ))'$
I can go as far as: $$((XY+X')\oplus (Y+YZ))'$$ $$\text{I use the rule of absorption:}$$ $$((Y+X')\oplus Y)'$$ Now I see that if $Y=1$ than the result is one and if $Y=0$ the result is $X$, but according to Wolfram the result is $X+Y$.
Where did I go wrong?
We know that: $$ A \oplus B = \bar A B + A \bar B$$ and that $\overline {A\cdot B} = \bar A+ \bar B $ and $\overline {A+B} = \bar A \bar B $. Thus, $$((Y + \bar X) \oplus Y) = \overline {Y + \bar X} Y + (Y + \bar X) \bar Y = (X\bar Y Y) + (Y\bar Y + \bar X \bar Y) = 0 + 0 + \bar X \bar Y $$
Thus, $$\overline {\bar X \bar Y} = X + Y $$ Hope it helps.