KnowledgeBoat Logo

Computer Science

What are maxterms? Convert the following function as a product of maxterms:
F(P, Q, R)= (P + Q).(P' + R')

Boolean Algebra

17 Likes

Answer

In POS expression, a sum term of n variables in which each of the n variables appear once in either its complement or uncomplement form is known as Max term.

Converting into product of maxterms:
   (P + Q).(P' + R')
= (P + Q + RR').(P' + QQ' + R')
= (P + Q + R).(P + Q + R').(P' + Q + R').(P' + Q' + R')

Answered By

10 Likes


Related Questions