I have simplified following Boolean expressions. Can somebody tell me whether they are right or wrong?
1) F1 = ~(~A ~B C + ~(AB)C)
~(~A ~B C) = ~(~A) + ~(~B) + ~C -------> Apply DeMorgan's law to the 1st term
= A + B + ~C ---------> since A=~(~A)
~(~(AB) C) = ~(~A) + ~(~B) + ~C -------> Apply DeMorgan's law to the 2nd term
= A + B + ~C ---------> since A=~(~A)
Thus;
~(~A ~B C) + ~(~(AB) C) = (A + B + ~C) + (A + B + ~C)
Simplified expression = (A + B + ~C)
Regards