I am trying to solve the following combination,
A | B | Cin | Sum | Cout
0 0 0 0 0
0 0 1 1 0
0 1 0 1 0
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1
Now the equation of Sum using SOP becomes,
ab'Cin'+ a'b'Cin + abCin + a'bCin'
Its been solved to,
a XOR b XOR Cin
in the solution. Please guide me how can I end up with the result above? Thanks in advance.