Minterms And Maxterms

Søren

Joined Sep 2, 2006
472
Hi,

i want to know that PRODUCT OF SUMS is the complement of SUM OF PRODUCTS......I am giving u a problem to solve:
X=A+A'BC+B'C
How do you define "complement"?

You need to shorten your expression - fill your terms into a Karnaugh map like this.

Rich (BB code):
A/BC | 00 01 11 10
-----+------------
 0   |  0  1  1  0
 1   |  1  1  1  1
Then I trust you to make the two circles and read out the answer yourself.
 

Dave

Joined Nov 17, 2003
6,969
i want to know that PRODUCT OF SUMS is the complement of SUM OF PRODUCTS......I am giving u a problem to solve:
X=A+A'BC+B'C
Simple DeMorgans:

X = A+A'BC+B'C <- Sum of products

Double NOT:

X = (A+A'BC+B'C)''

Apply DeMorgans to whole expression:

X = ((A)'(A'BC)'(B'C)')'

Apply DeMorgans to each product term:

X = ((A)'(A + B' + C)(B + C'))' <- Complement of product of sums

It works the other way also.

Dave (4000)
 
Top