How convert the given expression from SOP to POS

Thread Starter

CSharpque

Joined Sep 23, 2011
40
I have read the other thread and and get rule for converting SOP to POS and that is DeMorgan and Involution. Also get example . From that example i try to convert expression from SOP to POS. So plzzz check is this true?

Given Expression A+A'B+A'C'

Solution
(A)(A'+B)(A'+C')




Is this right? n If it is wrong plzz given me proper suggetion
 

milee

Joined Sep 20, 2007
15
i think the following might work

A+A'B+A'C'
A+A'(B+C')
A+A'(B+1-C) //C+C'=1
A+A'(1-C) //1+B=1
A+A'C'
(A+A')(A+C') //X+YZ=(X+Y)(X+Z)
1(A+C')
A+C'
 
Top