Here is the logic equation and I am trying to prove the relation ($'$ stands for complement): $$_1_3' + _2'_3' +_1_3 +_2'_3 = _1'_2' + _1_2 + _1_2'$$
What I am doing: $$x_2' (x_1x_3' + x_1x_3 + x_3' + x_3)$$ $$x_2'(x_1(x_3' + x_3) + x_3' + x_3)$$ $$x_2'(x_1 + x_3' + x_3)$$
.. and I do not where to go further, $x_3' + x_3$ is a tautology but I think I cannot eliminate it when it is expression of ORs. It does not seem I am getting the expected result. Anyone can help? Thanks
After drawing some Karnaugh maps, we have: \begin{align*} x_1x_3' + x_2'x_3' + x_1x_3 + x_2'x_3 &= (x_1 + x_2')x_3' + (x_1 + x_2')x_3 \\ &= (x_1 + x_2')(x_3' + x_3) \\ &= (x_1 + x_2')(1) \\ &= x_1 + x_2' \end{align*} Likewise, we have: \begin{align*} x_1'x_2' + x_1x_2 + x_1x_2' &= x_1'x_2' + x_1x_2 + (x_1x_2' + x_1x_2') \\ &= (x_1x_2 + x_1x_2') + (x_1'x_2' + x_1x_2') \\ &= x_1(x_2 + x_2') + x_2'(x_1' + x_1) \\ &= x_1(1) + x_2'(1) \\ &= x_1 + x_2' \end{align*}