Why Do You Need To Know About Karnaugh Maps?What Is a Karnaugh Map?Using Karnaugh MapsSome ObservationsProblems
Karnaugh Maps are used for many small design problems. It's true that many larger designs are done using computer implementations of different algorithms. However designs with a small number of variables occur frequently in interface problems and that makes learning Karnaugh Maps worthwhile. In addition, if you study Karnaugh Maps you will gain a great deal of insight into digital logic circuits.
In this section we'll examine some Karnaugh Maps for three and four variables. As we use them be particularly tuned in to how they are really being used to simplify Boolean functions.
The goals for this lesson include the following.
Given a Boolean function described by a truth table or logic function,
Draw the Karnaugh Mapfor the function.
Use the information from a Karnaugh Map to determine the smallest sum-of-products function.
A Karnaugh Map is a grid-like representation of a truth table. It
is really just another way of presenting a truth table, but the mode of
presentation gives more insight. A Karnaugh map has zero and one
entries at different positions. Each position in a grid corresponds
to a truth table entry. Here's an example taken from the voting circuit
presented in the lesson on Minterms. The truth table is shown first.
The Karnaugh Map for this truth table is shown after the truth table.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

At first, it might seem that the Karnaugh Map is just another way of presenting the information in a truth table. In one way that's true. However, any time you have the opportunity to use another way of looking at a problem advantages can accrue to you. In the case of the Karnaugh Map the advantage is that the Karnaugh Map is designed to present the information in a way that allows easy grouping of terms that can be combined.
Let's start by looking at the Karnaugh Map we've already encountered. Look at two entries side by side. We'll start by focussing on the ones shown below in gray.

Let's examine the map again.
Notice that the order of terms isn't random. Look across the top boundary of the Karnaugh Map. Terms go 00, 01, 11, 10. If you think binary well, you might have ordered terms in order 00, 01, 10, 11. That's the sequence of binary numbers for 0,1,2,3. However, in a Karnaugh Map terms are not arranged in numerical sequence! That's done deliberately to ensure that crossing each horizontal or vertical cell boundary will reflect a change of only one variable. In the numerical sequence, the middle two terms, 01, and 10 differ by two variables! Anyhow, when only one variable changes that means that you can eliminate that variable, as in the example above for the terms in the gray area.
Let's check the claim made on above. Click on the buttons to shade groups of terms and to find out what the reduced term is.
The Karnaugh Map is a visual technique that allows you to generate groupings of terms that can be combined with a simple visual inspection. The technique you use is simply to examine the Karnaugh Map for any groups of ones that occur. Grouping ones into the largest groups possible and ensuring that all ones in the table have been included are the first step in using a Karnaugh Map.
In the next section we will examine how you can generate groups using Karnaugh Maps. First, however, we will look at some of the kinds of groups that occur in Truth Tables, and how they appear in Karnaugh Maps.
Click on these buttons to show some groupings. There's one surprise, but it really is correct. In each case, be sure that you understand the term that the group represents.
There is a small surprise in one grouping above. The lower left and the lower right 1s actually form a group. They differ only in having B and its' inverse. Consequently they can be combined. You will have to imagine that the right end and the left end are connected.
So far we have focussed on K-maps for three variables. Karnaugh Maps are useful for more than three variables, and we'll look at how to extend ideas to four variables here. Shown below is a K-map for four variables.

Note the following about the four variable Karnaugh Map.
Here is a group of 2 in a 4-variable map.

Note that Y and Z are 00 and 01 at the top of the two columns in which you find the two 1s. The variable, Z, changes from a 0 to a 1 as you move from the left cell to the right cell. Consequently, these two 1s are not dependent upon the value of Z, and Z will not appear in the product term that results when we combine the 1s in this group of 2. Conversely, W, X and Y will be in the product term. Notice that in the row in which the 1s appear, W = 0 and X = 1. Also, in the two columns in which the 1s appear we have Y = 0. That means that the term represented by these two cells is:
![]()
P1. Here is a Karnaugh map with two entries. Determine the product term represented by this map.

In the upper left:-
By combining the first two terms above (the two terms at the top of the Karnaugh Map):-
By now you should have inferred the rules for getting the sum-of-products form from the Karnaugh map.
P2. Here is a Karnaugh Map with four entries. What is the sum-of-products form for the four ones shown?
P3. Here is a Karnaugh Map with four entries. What is the sum-of-products form for the four ones shown?
P4. Here is a Karnaugh Map with four entries. What is the sum-of-products form for the four ones shown?
P5. Here is a Karnaugh Map with eight entries. What is the sum-of-products form for the four ones shown?
There are a few further observations that should be made. Note the following.
