: Minterms : A Minterm (product) is a combination of variables : It has a value of 1 for only one input combination. It is 0 for all the other combinations of variables. A Minterm of n variables is the product of n literals in which each variable appears once in either a complemented or uncomplemented form. For example: If a function of 3 variables x,y and z produces as 1 output for xyz=010, 100, 111, then it can be written as F= x'yz'+ xy'z'+ xyz.
: Minterms Expansion : If a minterm has a single 1 and the remaining cells as 0's, it would appear to cover a minimum area of 1's. It is standard Sum-of-Products (SOP). F= A'BC+AB'C'+AB'C+ABC has four minterms. This function will be written as F= Σ m(3,4,5,7).
: Example :
: Maxterms : A Max (sum) term is also a unique combination of variables : However, It is opposite of minterms. It has a value of 0 for only one input combination. It is 1 for all the other combinations of variables. That is why, It is called Max (sum) terms. For Example: The same function of 3 variables x,y and z produces as 0 output for xyz=000, 001, 011, 101, 110, then F= (x+y+z).(x+y+z').(x+y'+z').(x'+y+z').(x'+y'+z)
: MAxterms Expansion : It is a standard Product of Sum (POS). We can also treat an order of variables to represent an integer . The function can also be written as f(x,y,z) = π M(0,1,3,5,6).
: Example :
: Conversion of English sentences to boolean equations : For simple problems, go directly from a word description of the desired circuit behavior to an boolean expression. For Example: The alarm will ring (Z) iff The alarm is turned on (A), and The door is not closed (B'), or Or, It is after 6 p.m (C), and The window is not closed (D'). Z = AB'+CD'.
: Combinational logic design using a truth table : Example no 01: The canonical minterm (SOP) form F= A'B'+A'B. The canonical maxterm (POS) form F= (A'+B).(A'+B').