Minterm Vs Maxterm

Q.1: Why are minterms and maxterms used for?

Answer:

Minterms and maxterms are used for canonical representation of Boolean functions.

Q.2: How we represent minterms in K-maps?

Answer:

Minterms are represented by m in K-maps. The output result of minterm function is 1.

Q.3: Write the two standard forms to represent the boolean expression used in K-map?

Answer:

The sum of minterms in a function is called SOP (Sum of Product) and the product of maxterms in a function is called POS (Product of Sum).



Minterm vs Maxterm

Minterms and Maxterms are important parts of Boolean algebra. Minterm is the product of N distinct literals where each literal occurs exactly once. The output of the minterm functions is 1. Minterm is represented by m. Maxterm is the sum of N distinct literals where each literals occurs exactly once. The output of the maxterm functions is 0. Maxterm is represented by M. In this article we will learn about minterms and maxterms, their difference, why we use minterms and maxterms along with the solved examples.

Similar Reads

What is Minterm?

Minterm is the product of various different 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)....

Minterms for Values

Minterms for values is the minterms obtained by the values of the Boolean variable....

What is Maxterm?

Maxterm is the sum of various different literals in which each literal occurs exactly once. The output result of the maxterm functions is 0. It is represented by M. To represent a function, we perform product of maxterms also called Product of Sum (POS)....

Maxterms for Values

Maxterms for values is the maxterms obtained by the values of the Boolean variable....

Minterm vs Maxterm

Minterm Maxterm Minterm is the term with the product of N literals occurring exactly once. Maxterm is the term with the sum of N literals occurring exactly once. It is represented by m. It is represented by M. It is logical AND of distinct literals. It is logical OR of distinct literals. The sum of minterms forms SOP (Sum of Product) functions. The product of maxterms forms POS (Product of Sum) functions. The output result of minterm function is 1. The output result of maxterm function is 0. It works on active high. It works on active low. Example: AB + A’B’ Example: (A+B). (A’+B’)...

Why we use Minterms and Maxterms ?

Minterms and Maxterms are used to express the Boolean functions in its canonical forms. The minterms and maxterms are the basic building blocks for representing the Boolean functions in the canonical forms. The minterms are the terms which are used when we require active high output. The maxterms are the terms which are used when we require active low output....

Solved Examples on Minterms and Maxterms

Example 1: For the Boolean variables A = 0, B = 1 and C = 0 obtain the minterm and maxterm for the variables....

FAQs on Minterm Vs Maxterm

Q.1: Why are minterms and maxterms used for?...

Contact Us