Open In App

Representation of Boolean Functions

A Boolean function is described by an algebraic expression consisting of binary variables, the constants 0 and 1, and the logic operation symbols For a given set of values of the binary variables involved, the boolean function can have a value of 0 or 1. For example, the boolean function is defined in terms of three binary variables . The function is equal to 1 if and simultaneously or . Every boolean function can be expressed by an algebraic expression, such as one mentioned above, or in terms of a Truth Table. A function may be expressed through several algebraic expressions, on account of them being logically equivalent, but there is only one unique truth table for every function. A Boolean function can be transformed from an algebraic expression into a circuit diagram composed of logic gates connected in a particular structure. Circuit diagram for  

Canonical and Standard Forms – Any binary variable can take one of two forms, or . A boolean function can be expressed in terms of binary variables. If all the binary variables are combined together using the AND operation, then there are a total of combinations since each variable can take two forms. Each of the combinations is called a minterm or standard product. A minterm is represented by where is the decimal equivalent of the binary number the minterm is designated. Important Note – In a minterm, the binary variable is un-primed if the variable is 1 and it is primed if the variable is 0 i.e. if the minterm is then that means and . For example, for a boolean function in two variables the minterms are – In a similar way, if the variables are combined together with OR operation, then the term obtained is called a maxterm or standard sum. A maxterm is represented by where is the decimal equivalent of the binary number the maxterm is designated. Important Note – In a maxterm, the binary variable is un-primed if the variable is 0 and it is primed if the variable is 1 i.e. if the maxterm is then that means and . For example, for a boolean function in two variables the maxterms are – Minterms and Maxterms for function in 3 variables –



 

 Relation between Minterms and Maxterms – Each minterm is the complement of it’s corresponding maxterm. For example, for a boolean function in two variables –



[Tex](m_0)^\prime=(x^\prime y^\prime)^\prime[/Tex][Tex](m_0)^\prime=x+y=M_0[/Tex]In general  or 

Constructing Boolean Functions – Now that we know what minterms and maxterms are, we can use them to construct boolean expressions. “A Boolean function can be expressed algebraically from a given truth table by forming a minterm for each combination of the variables that produces a 1 in the function and then taking the OR of all those terms.” For example, consider two functions and with the following truth tables –

x y z f f
0 0 0 0 0
0 0 1 1 0
0 1 0 0 0
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1

The function is 1 for the following combinations of – 001,100,111 The corresponding minterms are- . Therefore the algebraic expression for is- [Tex]f_1(x,y,z) = m_1 + m_4 +m_7   [/Tex]Similarly, the algebraic expression for is- If we use De Morgans Law on and all 1’s become 0 and all 0’s become 1. Therefore we get- [Tex]f_2(x,y,z)^\prime = m_0 + m_1 + m_2 + m_4   [/Tex]On using De Morgans Law again- [Tex]f_1(x,y,z) = m_0^\prime . m_2^\prime . m_3^\prime . m_5^\prime . m_6^\prime   [/Tex]and [Tex]f_2(x,y,z) = m_0^\prime . m_1^\prime . m_2^\prime . m_4^\prime   [/Tex]We can conclude from the above that boolean functions can be expressed as a sum of minterms or a product of maxterms. “Boolean functions expressed as a sum of minterms or product of maxterms are said to be in canonical form.

Standard Forms – Canonical forms are basic forms obtained from the truth table of the function. These forms are usually not used to represent the function as they are cumbersome to write and it is preferable to represent the function in the least number of literals possible. There are two types of standard forms –

  1. Sum of Products(SOP)- A boolean expression involving AND terms with one or more literals each, OR’ed together.
  2. Product of Sums(POS) A boolean expression involving OR terms with one or more literals each, AND’ed together, e.g.
SOP- POS- 
  1. Note – The above expressions are not equivalent, they are just examples.

GATE CS Corner Questions

Practicing the following questions will help you test your knowledge. All questions have been asked in GATE in previous years or in GATE Mock Tests. It is highly recommended that you practice them. 1. GATE CS 2010, Question 6 2. GATE CS 2008, Question 7 3. GATE CS 2014 Set-1, Question 17

References-

Digital Design 5th Edition, by Morris Mano and Michael Ciletti


Article Tags :