The SOP (Sum of Product) and POS (Product of Sum) are the methods for deducing a particular logic function. In other words, these are the ways to represent the deduced reduced logic function. We can use the deduced logic function in designing a logic circuit.
The prior difference between the SOP and POS is that the SOP contains the OR of the multiple product terms. Conversely, POS produces a logical expression comprised of the AND of the multiple OR terms. Before understanding SOP and POS, we must learn various related terms so that the entire thing would collectively make some sense.
Content: SOP Vs POS
Comparison Chart
Basis for comparison | SOP | POS |
---|---|---|
Expands to | Sum of Product | Product of Sum |
Basic | Form of representation of a boolean expression incorporating minterms | Technique of generating a boolean expression involving maxterms. |
Expression includes | Product terms are taken where the input set produces a value 1. | Only Sum terms which generate a value 0. |
Method | 1 represents the variable and 0 is the complement of it. | 0 represents the variable and 1 complement of the variable. |
Obtained through | Adding corresponding product terms. | Multiplying the relevant sum terms. |
Order of implementation | OR gate is employed after the AND gate. | AND gate is used after the OR gate. |
Definition of SOP
When we add two or multiple product terms by a boolean addition, the output expression is a sum-of-products (SOP). For example, the expression a’bc’ + a’bd’ + a’bc’d shows a SOP expression. It can also have a single variable term within the expression like a + bc +a’b. These logical expressions are simplified in a way that they must not contain redundant information while creating the minimal version of it.
Domain of a boolean expression
The group of variables, either complimented or uncomplimented, comprised in a boolean expression, is known as the domain. Let’s suppose, we have an expression a’b + ab’c then the domain of this expression would be the set of the variables a, b, c.
Implementation of the SOP form
It is mainly implemented by an AND-OR logic where the product of the variables are first produced by AND gate and then added by the OR gates. For example, the expression “ab’+bcd+ac” can be expressed by the logic circuit shown in figure 1.1 where the output P of the OR gate is the SOP expression.
Steps for converting the product term into standard SOP
Here the standard SOP or canonical SOP refers to an expression in which all the variables of the domain are present. For generating, standard SOP from the product term the boolean rule “A+A’=1” (the output is ‘1’ when a variable added to its complement) is used and below given steps are followed.
- Each non-standard term is multiplied by a term constructed by the addition of the absent variable and its complement. This produces two product terms, as we know that anything can be multiplied by ‘1’ without changing its value.
- Repeat the step ‘1’ until all the domain variables are present in the expression R.
Example
The term ab’c+a’b’+abc’d converted into the standard SOP or canonical SOP by multiplying the part of the term by the missing term. Such as a’b’ is multiplied with the c+c’. Similarly, the whole expression is converted in its canonical form by the following given steps.
Now there are various terms which are used while generating the reduced logic function such as minterm, maxterm, k-map (Karnaugh Map), which we will elucidate further in the article.
Minterm
In these terms, the input variables making up a boolean expression is the dot product of each other, and it is also known as minterm or product term. Mn following table presents the minterms of the variables.
SOP expression from a Truth table
Suppose, we have a truth table (as shown in figure 1.3) in which each term of the input variables are written as the product of all the terms. To determine the input combinations that exist, we need to select the output having value 1 and convert the binary into relevant product term. Here, we will consider ‘0’ as the variable and ‘1’ as the compliment of the variable.
Y(A,B,C,D) = ∑m (0,2,3,6,7)
Only those product terms are selected where the output value is 1.
Y = m0+m2+m3+m6+m7
So, in accordance with the truth table, the boolean function (Canonical SOP form) in the minterm is :
Y = A’B’C’+A’BC’+A’BC+ABC’+ABC
0 is variable and 1 is the complement of the variable.
Definition of POS
POS (Product of Sums) is the representation of the boolean function in which the variables are first summed, and then the boolean product is applied in the sum terms. For example, (a’+b).(a+b’+c) is POS expression where we can see that the variables are added then each bigger term is the product of the other.
Implementation of the POS form
It just needs the variables to be inserted as the inputs to the OR gate. The terms generated by the OR gates are inserted in the AND gate. The sum term is formed by an OR operation, and product of two or multiple sum terms is created by an AND operation. To understand the POS implementation refer the below given figure 2.1 of the expression (a+b).(b+c+d).(a+c).
Steps for converting the product term into standard POS
Similar to the previous explanation, the standard or canonical POS is in which sum terms does not include all of the variables in the domain of the expression. Here, also we use the boolean algebra rule 8 “A.A’=0” (a variable multiplied by its complement is 0) to convert a term in a standard form, and the method is given below.
- In the very first step, each non-standard term added with a term comprised of the product of the absent variable and its complement. This will produce two sum term, and ‘0’ can be added to any term without changing its value.
- Then, rule 12 (i.e.A+BC=(A+B)(A+C)) is applied to the terms.
- The first two steps are redone again and again until all the sum terms involve all the variables present in the domain either in the complemented and uncomplemented form.
Example
The term (a+b’+c)(b’+c+d’)(a+b’+c’+d) is translated into the standard POS or canonical POS by adding each term with the missing term (which is a product of its complement). Such as “a+b’+c” is summed with the d.d’. In this way, the entire expression is converted in its canonical form by the following given steps.
Maxterm
These are the terms in which the input variables are present in summation form, alternately called as sum term. The below-given table represents the Mn, maxterms of the variables.
POS expression from a Truth table
To find the POS expression with the help of a truth table (figure 2.3), record the binary values having the output 0. Translate each binary value to the related sum term where each value ‘1’ is substituted with the corresponding variable complement and each 0 is with the corresponding variable.
Y(A,B,C,D) = ∏m (1,4,5)
Only those sum terms are selected where the output value is 0.
Y = m1+m4+m5
So, in accordance with the truth table, the boolean function (Canonical POS form) in the maxterm is :
Y = (A+B+C’).(A’+B+C).(A’+B+C’)
1 is variable and 0 is the complement of the variable.
Key Differences Between SOP and POS
- SOP (Sum of product) generates expression in which all the variables in a domain are first multiplied then added. On the contrary, the POS (Product of Sum) represents the boolean expression having variables summed then multiplied with each other.
- Minterms or product terms are mainly used in the SOP which associates with the high (1) value. Conversely, in POS, Maxterms or sum terms are employed, which produces a low (0) value.
- In the SOP, method, the value ‘1’ is replaced by the variable and ‘0’ by its complement. In contrast, when it comes to POS a ‘0’ is substituted by the variable and ‘1’ by its complement.
- At last, all the terms are added with each other in case of SOP. As against, in POS, the terms are multiplied with each other in the last step of the process.
Karnaugh Map (K-map) :
It is quite similar to a truth table where we have various probable values of the input variables and the outcome for each value. A karnaugh map provides an organized way for simplifying boolean expressions and helps in constructing the simplest minimized SOP and POS expression.
Conclusion
The SOP and POS, both forms are used for representing the expressions and also holds equal importance. In an effort for finding whether your reduced boolean expression is correct or not for designing the logical circuit, one can compare the SOP and POS form of expression and check whether they are equivalent or not. Additionally, for any binary value, the resultant of SOP and POS are either be both 1 or 0 based on the binary value.
Leave a Reply