I have this function:
$$f(A,B,C,D) = A'B' + CD' + ABC + A'B'CD' + ABCD'$$
I used a Karnaugh map to minimize the function to:
$$Minimum SOP = A'B' + C D' + A B C$$
How can I turn this into a product-of-sums?
My attempt was to first find the inverse:
$$(A'B' + C D' + A B C)'$$ $$= (A'B')'(C D')'(A B C)'$$ $$= (A + B)(C' + D)(A' + B' + C')$$ $$= (AC' + AD + BC' + CD)(A' + B' + C')$$ $$= A'(AC' + AD + BC') + B'(AC' + AD + BC') + C'(AC' + AD + BC')$$
I am stuck here because I see that I end up with this:
$$= A'AC' + A'AD + A'BC' + ...$$
How can this be correct?
Doesn't $A'A$ mean $A \wedge \neg A$ (which doesn't even make sense to me)?
If I made a mistake, where did I make it?
If I'm on the right track, what is my next step?