Define Sum of Product Form and find SOP expression from Truth Table, Boolean function And non-Canonical Expression

What is Sum of Product form?

‘Sum of Product’ is commonly abbreviated as SOP form. When an expression is expressed in a sum of binary terms ( A term refers to a set of binary variables, where each binary variable is combined with an operation) called Minterms then it is said to be Sum of Products.

In other words, An expression consisting only of minterms is called Sum of the Product. For example, A.B+A’B is an SOP expression.
[other concept Maxterm, (A+B).(A’+B’)]

SOP can be categorized into two forms :

– Canonical or Standard SOP form: In this, each and every binary variable must have in each term. For example- A.B+A’B’

– Minimal SOP form: In this, the standard SOP expression is reduced up to the minimum possible expression.

Sum of Product form

A Sum of Products question can be asked in three ways:-

1) In the form Truth table
2) In the form of non-canonical Expression
3) In the form of Boolean function

Case 1: For the given table, simplify it in SOP expression

ABY
000 (m0)
010 (m1)
101 (m2)
111 (m3)

Points

  • Always consider high output (1)
  • In SOP, every term in the expression is referred to as Minterm
  • A Minterm is represented as m (small m)

How do you find the SOP expression from truth table?

Solution :
Step 1. Since there are 2 variables, so, therefore, there would be 2n combinations which are 22 =4.
We consider a high output as minterm. a minterm is denoted as m.
Y= m2+m3
Y = A.B’ +A.B                            :- It is in Canonical SOP form

In Sum of Product each term is combined with OR operation and within each term, every variable combined with AND operation.

Step 2. Now narrow the founded expression down to minimal SOP form. In this, you should know the rules of Boolean expression or K-map

Y= A.( B’ + B)
Y= A.1
Y= A

OR

Considering, A= 1, A’=0

k map 2B 2B 2Bsop

Y= A

A is your answer.

Case 2: Simplify any expression to SOP or Sum of product form, when Boolean function is given

Simplify the following Boolean function in SOP form
F(X,Y,Z) = Σm(1,4,5,6,7)

Points to Remember

  • First, check the type of m, if m is small then it would Minterm, meaning we have to solve the boolean function in respect to Sum of Product form, whereas if m is capital then it would be Maxterm, means we need to solve it in respect to Product of Sum.
  • On the left side, See how many binary variables are there, in the above case there are 3 binary variables, that’s 23 possible combinations.

How do you find the SOP expression from the boolean function?

Step 1. Make the truth table, if you want to see the actual picture or skip the step.

XYZF
0000 (m0)
0011 (m1)
0100 (m2)
0110 (m3)
1001 (m4)
1011 (m5)
1101 (m6)
1111 (m7)

In the above table, we put output as 1 or high at the mentioned position in the above Boolean function.
For example, in Boolean function  first value is 1, so we put the output high to respective place in the truth table as output 1 at  row 001  ( represents 1)
Similarly, we have 4 , so at row 100 (represents 4)  in the truth table, we put high output.

Step 2. Now make the expression as per the above table,

F= m1 + m4 + m+ m6 + m7
F=  X’Y’Z + XY’Z’ + XY’Z+ XYZ’ + XYZ                :- Canonical SOP form

Step 3. Now Solve the function to minimal SOP form using K map or Boolean rules
K-map is always considered the easiest and fastest way.

 

BOOLEAN 2BFUNCTION 2BSOP

F= X + Y’Z                   :- Minimal SOP form

This your answer

 

Case 3: Simplify any expression in SOP form, when a is given

Simplify the following expression in SOP form
F= x’z’+y’z’+yz’+xy

 OR

Simplify the following non-canonical expression in SOP form

F= x’z’+y’z’+yz’+xy

Point to remember

  • Put 1 in place of missing input and convert that 1 to the appropriate Boolean rule. Suppose in above term x’z’, y is missing ( replace 1 with (y+y’))
  • Make sure the expression is in Canonical form

How do you find the SOP expression from the non-canonical expression?

Step 1.   First, check the given expression is in Canonical form or not, if yes simply make K-map (or jump to 4th step ) and simplify it, otherwise follow the steps.

Step 2. Now, the above expression isn’t in canonical form as there are three binary variables or inputs, x , y and z which can’t be together found in each and every term. So to do this, make it canonical form by doing the following:-

F =  (x’.y’. 1) + (y’z’ .1) + (y z’ .1) + ( x. y.1 )

Since, in each term, a variable is missing, to bring it, in each term we have to put 1 to get the expression.

Step 3.  Put relevant input in place of 1 on the basis of Boolean rules

There is a rule, where

x + x’ =1 in Boolean algebra, we will apply it.

Sum of product non-canonical expression

In the first term, y is missing  (x’y’), similarly in the second one, x is missing (y’z’) and so one.

F =  x’z'( y +y’)  +  y’z'(x+x’) + yz'(x+x’)+ xy(z+z’)
F=  x’z’y+x’z’y’+y’z’x+y’z’x’+yz’x+yz’x’+xyz+xyz’

Now, Arranging in it alphabetical order for ease of understanding

F=x’yz’+x’y’z’+xy’z’+x’y’z’+xyz’+x’yz’+xyz+xyz’

It is now in Canonical SOP or Sum of Product form

Step 3. This is the last step, shrink the expression down to minimal SOP form using K-map
or Boolean algebra

sop 2Bk 2Bmap

Which gives, F = z’ + xy

 

Leave a Reply