Karnaugh Map (K-map)

A Karnaugh map (K-map) is an array of cells in which each cell represents a binary value of the input variables. The cells are arranged in a way so that simplification of a given expression is simply a matter of properly grouping the cells.

The number of cells in a Karnaugh map, as well as the number of rows in a truth table, is equal to 2n possible input variable combinations, where n is the number of variables in a Boolean function.

The simplified expressions produced by the map are always in one of the two standard forms: sum-of-products (SOP) or product-of-sums (POS). This expression produces a circuit diagram with a minimum number of gates and the minimum number of inputs to each gate.

The process that results in an expression containing the fewest possible terms with the fewest possible variables (literals) is called minimization.

The cells in Karnaugh map are arranged so that there is only a single-variable change (Gray code) between adjacent cells. Adjacency is defined by a single-variable change. A cell is not adjacent to the cells that diagonally touch any of its corners. Also, the cells in the top row are adjacent to the corresponding cells in the bottom row and the cells in the outer left column are adjacent to the corresponding cells in the outer right column. This is called wrap-around adjacency.

A prime implicant is a product/sum term obtained by combining the maximum possible number of adjacent cells in the map. A prime implicant is an essential prime implicant if it is the only prime implicant that covers the minterm/maxterm.

Boolean functions that have unspecified outputs for some input combinations are called incompletely specified functions. It is customary to call the unspecified minterms/maxterms of a Boolean function as don’t-care conditions.

A don’t-care minterm/maxterm is a combination of variables whose logical value is not specified. To distinguish the don’t-care condition from 1 and 0, an X is used.

When simplifying the Boolean function, each don’t-care minterm/maxterm can be included along with either 1 or 0, depending on which combination gives the simplest expression.

Sum-of-Products (SOP) Minimization

Construction

Each cell represents a minterm mi or the complement of maxterm Mi.

Two-variable K-map

xy0y1y
0x00m0=M0=xy01m1=M1=xy
1x10m2=M2=xy11m3=M3=xy

Three-variable K-map

xyz00yz01yz11yz10yz
0x000m0=M0=xyz001m1=M1=xyz011m3=M3=xyz010m2=M2=xyz
1x100m4=M4=xyz101m5=M5=xyz111m7=M7=xyz110m6=M6=xyz

Four-variable K-map

wxyz00yz01yz11yz10yz
00wx0000m0=M0=wxyz0001m1=M1=wxyz0011m3=M3=wxyz0010m2=M2=wxyz
01wx0100m4=M4=wxyz0101m5=M5=wxyz0111m7=M7=wxyz0110m6=M6=wxyz
11wx1100m12=M12=wxyz1101m13=M13=wxyz1111m15=M15=wxyz1110m14=M14=wxyz
10wx1000m8=M8=wxyz1001m9=M9=wxyz1011m11=M11=wxyz1010m10=M10=wxyz

Grouping

  • A group must contain cells in a powers of two (1,2,4,8,16,). For boolean function with n variables, the maximum possible number of cells in a group is 2n cells.
  • Each cell in a group must be adjacent to one or more cells in that same group, but all cells in the group do not have to be adjacent to each other.
  • Always include the largest possible number of 1s in a group. The product term obtained from such a group becomes the prime implicant of the boolean function.
  • Each 1 on the map must be included in at least one group. The 1s already in a group can be included in another group as long as the overlapping groups include non-common 1s.

Minimization Procedure

  • Arrange the Boolean expression into a sum-of-products (SOP) or sum-of-minterms expression.
  • Since each product term represents a group, a 1 is placed in the cells where the variables within that product term remain constant across the group. If the product term is a minterm, a 1 is placed in the corresponding cell.
  • All other cells that are not part of the groups should remain as 0s. Additionally, don’t-care minterms can be utilized to further simplify the Boolean expression.
  • Group the cells that have 1s. Or group the cells that have 0s to obtain the complemented Boolean expression.
  • Determine the minimum product term for each group. Variables that occur both uncomplemented and complemented within the group are eliminated.
  • When all the minimum product terms are derived from the map, they are OR-ed (+) to form the minimum SOP expression.

Product-of-Sums (POS) Minimization

Construction

Each cell represents a maxterm Mi or the complement of minterm mi.

Two-variable K-map

xy0y1y
0x00M0=m0=x+y01M1=m1=x+y
1x10M2=m2=x+y11M3=m3=x+y

Three-variable K-map

xyz00y+z01y+z11y+z10y+z
0x000M0=m0=x+y+z001M1=m1=x+y+z011M3=m3=x+y+z010M2=m2=x+y+z
1x100M4=m4=x+y+z101M5=m5=x+y+z111M7=m7=x+y+z110M6=m6=x+y+z

Four-variable K-map

wxyz00y+z01y+z11y+z10y+z
00w+x0000M0=m0=w+x+y+z0001M1=m1=w+x+y+z0011M3=m3=w+x+y+z0010M2=m2=w+x+y+z
01w+x0100M4=m4=w+x+y+z0101M5=m5=w+x+y+z0111M7=m7=w+x+y+z0110M6=m6=w+x+y+z
11w+x1100M12=m12=w+x+y+z1101M13=m13=w+x+y+z1111M15=m15=w+x+y+z1110M14=m14=w+x+y+z
10w+x1000M8=m8=w+x+y+z1001M9=m9=w+x+y+z1011M11=m11=w+x+y+z1010M10=m10=w+x+y+z

Grouping

  • A group must contain cells in a powers of two (1,2,4,8,16,). For boolean function with n variables, the maximum possible number of cells in a group is 2n cells.
  • Each cell in a group must be adjacent to one or more cells in that same group, but all cells in the group do not have to be adjacent to each other.
  • Always include the largest possible number of 0s in a group. The sum term obtained from such a group becomes the prime implicant of the boolean function.
  • Each 0 on the map must be included in at least one group. The 0s already in a group can be included in another group as long as the overlapping groups include non-common 0s.

Minimization Procedure

  • Arrange the Boolean expression into a product-of-sums (POS) or product-of-maxterms expression.
  • Since each sum term represents a group, a 0 is placed in the cells where the variables within that sum term remain constant across the group. If the sum term is a maxterm, a 0 is placed in the corresponding cell.
  • All other cells that are not part of the groups should remain as 1s. Additionally, don’t-care maxterms can be utilized to further simplify the Boolean expression.
  • Group the cells that have 0s. Or group the cells that have 1s to obtain the complemented Boolean expression.
  • Determine the minimum sum term for each group. Variables that occur both uncomplemented and complemented within the group are eliminated.
  • When all the minimum sum terms are derived from the map, they are AND-ed () to form the minimum POS expression.
#logic