POS stands for Product of Sum and totally opposite to SOP form . When an expression is expressed in a product of binary terms ( A term refers to a set of binary variables, where each binary variable is combined with an operation) called Maxterms than it is said to be Product of Sum.
In other words, An expression consisting only Maxterms is called Product of Sum. For example, (A+B)(A’+B) is a POS expression.
[other concept Minterms, A.B+A’B’]
– Canonical or Standard POS form: In this, each and every binary variable must have in each term. For example :- (A+B).(A’+B).
– Minimal POS form: In this, the standard POS expression is reduced up in the minimum possible expression.
A Question can be asked in three ways:-
1) In the form Truth table
2) In the form of non-canonical Expression
3) In the of form of Boolean function
Or
Find POS from Truth Table
A | B | Y |
0 | 0 | 0 (M0) |
0 | 1 | 0 (M1) |
1 | 0 | 1 (M2) |
1 | 1 | 1 (M3) |
Points to Remember :
Step 1. Since there are 2 variables , so therefore there would be 2n combinations which is 22 =4.
We consider a low output as Maxterm . a Maxterm is denoted as M.
Y= M0+M1
Y = (A+B).(A+B’) :- It is in Canonical POS form
In Product of Sum each term is combined with AND operation and within each term, every variable combined with OR operation.
Step 2. Now narrow the founded expression down to minimal Product of Sume or POS form. In this, you should know rules of Boolean expression or K-map
Y= A+BB’ :- x+yz = (x+y)(x+z)
Y= A + 0 :- x.x’ =0
Y= A
OR
Considering, A= 0, A’=1
Y= A
A is your answer.
This post was last modified on August 17, 2022