Conversion from Cardinal Form to Maxterm Expression

A maxterm expression can be obtained from a given boolean function in cardinal form by using the following steps:

  • Convert maxterm designation into binary form keeping the total number of bits same as the number of variables used in the function.
  • For 0 take the variable and for 1 take the complement of the variable.
  • Add the variable and the complement for every bit to obtain the maxterm
  • Multiply the maxterms to get maxterm expression.

Example:

Find the maxterm expression for the boolean function: F(A, B, C) = Π(7, 3)

Binary of 7 is 111: (A’ + B’ + C’)

Binary of 3 is 011: (A + B’ + C’)

Hence, Max Term expression: (A’ + B’ + C’)(A + B’ + C’)

Find the maxterm expression for the boolean function: F(A, B, C) = Π(0, 3, 5)

Binary of 0 is 000: (A + B + C)

Binary of 3 is 011: (A + B’ + C’)

Binary of 5 is 101: (A’ + B + C’)

Hence, Max Term expression: (A + B + C)(A + B’ + C’)(A’ + B + C’)

Conversion From Minterm Expression to Maxterm Expression

Minterm is the product of N distinct literals where each literal occurs exactly once. The output of the minterm functions is 1. Maxterm is the sum of N distinct literals where each literals occurs exactly once. The output of the maxterm functions is 0. The conversion from minterm to maxterm involves changing the representation of the function from a Sum of Products (SOP) to a Product of Sums (POS).

In this article, we will cover prerequisites like minterm, maxterm, minterm designation, maxterm designation, conversion from Cardinal form to Minterm Expression, and conversion from Cardinal form to Maxterm Expression with a detailed explanation of conversion from minterm expression to maxterm expression with solved examples and FAQs.

Similar Reads

What is Minterm?

Minterm is also a fundamental part of Boolean algebra. Minterm is the product of various literals in which each literal occurs exactly once. The output result of the minterm functions is 1. It is represented by m. To represent a function, we perform a sum of minterms also called the Sum Of Products (SOP)....

What is Maxterm?

Maxterm is also a fundamental part of Boolean algebra. Maxterms are the sum of various distinct literals in which each literal occurs exactly once (in either its complement or un-complement form). The output result of the maxterm function is 0. It is represented by M. To represent a function, we perform the product of maxterms which is called the Product of Sum (POS) or maxterm expression....

Minterm Designation

This is another way to represent a minterm. A binary pattern of min term is formed by using 1 and 0 corresponding to the variable and complement of variable respectively. The decimal equivalent of binary pattern used as the subscript of letter m, is known as Minterm designation....

Maxterm Designation

This is another way to represent a maxterm. A binary pattern of maxterm is formed by using 0 corresponding to the variable and 1 corresponding to the complement of variable. The decimal equivalent of binary pattern used as subscript with letter M, is known as Maxterm designation....

Conversion from Cardinal Form to Minterm Expression

A minterm expression can be obtained from a given cardinal form of boolean function by using the following steps:...

Conversion from Cardinal Form to Maxterm Expression

A maxterm expression can be obtained from a given boolean function in cardinal form by using the following steps:...

Conversion from Minterm Expression to Maxterm Expression

Find the minterm designations: For each min term, find its designation. Identify the missing minterms: A boolean function with n variables will have 2n possible minterms. Identify the minterms that are not present in the given expression. These will be the maxterms in the maxterm expression. Find the maxterm designations: For each missing minterm, find its maxterm designation. The maxterm designation is the complement of the minterm designation. Write the maxterms from their designations: Convert each maxterm designation into a term by replacing 0 with the uncomplemented variable and 1 with the complemented variable. Form the max termexpression: Finally, form the maxterm expression by taking the product of all the maxterms....

Conversion From Minterm Expression to Maxterm Expression – FAQs

Why are minterms used for?...