I have to solve this simple boolean function :
$$f_1 * f_2 = (x_1 + x_2) * (!x_1 + x_3)$$
The solution is : $x_1*x_3 + !x_1*x_2$
Can anyone make a step by step solution because after getting :
$$x_1*x_3 + x_2*(!x_1) + x_2*x_3$$
I don't know how to proceed (I got stuck).
Thanks
If $x_1$ then you get $x_3+x_2*x_3 = x_3(1+x_2) = x_3$; if $!x_1$ then you get $x_2+x_2*x_3 = x_2(1+x_3) = x_2$. In either case, $x_2*x_3$ is redundant, so it can be discarded from the solution.