Click here to Skip to main content
15,881,679 members
Articles / Programming Languages / C#
Tip/Trick

Truth Table and Simplification of a Boolean Expression

Rate me:
Please Sign up or sign in to vote.
3.00/5 (12 votes)
30 Oct 2016CPOL1 min read 40K   473   10   13
Generation of Karnaugh table

Introduction

The Karnaugh map, also known as the K-map, is a method to simplify boolean algebra.

Karnaugh maps are used to facilitate the simplification of Boolean algebra functions. Take the Boolean function described by the following truth table.

Image 1

                                                               Figure1 truth table  [1]

This article, and especially the attached code, is for those want to know how KARNAUGH table reduice an algebra expression.

Requirements

The reader should have basic notions of boolean algebra; Knowledge of the Quine McKluskey algorithm is optimal. Basic notions of C# are required for understanding the code.

Using of the Application

First, we have to introduce the boolean expression in the textbox. This one must use only (a;b:c:d;!,+) characters, then we click the button of table truth generation to fill our listview by the appropriate values.

Once the truth table is filled, we can process to generation of the Karnaugh table by clicking the button named Kanaugh.

Image 2

To simplify the expression in codesource, we use two methods, the first is to simplify two terms and return the simplified expression.

C#
 public string simplifier1(int i,int j,int order)
{
    int pos = -1;
    var dd = Form1.local_tab[i];
    var ff = new StringBuilder(dd);
    if (shift(Form1.local_tab[i], Form1.local_tab[j]) == 1)
   {
     ff.Remove(pos, 1);
     ff.Insert(pos, "-");
     lstTerms[order].SetItemChecked(i, true);
     lstTerms[order].SetItemChecked(j, true);
   }
  return ff.ToString();
  }

The second makes all simplifications possible in the Karnaugh table.

C#
public void evaluer(int order)
    {
        int s = 0;
        for (int i = 0; i < Form1.j; i++)
        {
            for (int k = i; k < Form1.j; k++)
            {
                simplifier1(i, k, order);
                if ((lstTerms[order].GetItemCheckState(i) == CheckState.Checked) &&
                   (lstTerms[order].GetItemCheckState(k) == CheckState.Checked))
                {
                    if (!tab.Contains(simplifier1(i, k, order)) &&
                        !Form1.local_tab.Contains(simplifier1(i, k, order)))
                    {
                        tab[s] = simplifier1(i, k, order);
                        lstTerms[order+1].Items.Add(tab[s]);
                        lstTerms[order+1].SetItemChecked(s, false);
                        s++;
                    }
                }
            }
        }
        for (int i = 0; i < Form1.j; i++)
        {
            Form1.local_tab[i] = " ";
        }
            Form1.j = s;
            for (int i = 0; i < Form1.j; i++)
            {
                Form1.local_tab[i] = tab[i];
                tab[i] = " ";
            }
            if (s == 0)
                arret = true;
    }

This is what we have as result:

Image 3

Reference an Attribution 

[1} https://commons.wikimedia.org/wiki/File:K-map_minterms_A.svg

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Algeria Algeria
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
PraiseThanks Pin
Phil Ouellette29-Oct-16 8:42
Phil Ouellette29-Oct-16 8:42 
GeneralRe: Thanks Pin
Amar zaidi30-Oct-16 10:51
Amar zaidi30-Oct-16 10:51 
BugMy vote of 2 Pin
Philippe Mori28-Oct-16 3:19
Philippe Mori28-Oct-16 3:19 
GeneralRe: My vote of 2 Pin
Amar zaidi30-Oct-16 2:06
Amar zaidi30-Oct-16 2:06 
GeneralMissing attribution for image Pin
Jochen Arndt28-Oct-16 2:34
professionalJochen Arndt28-Oct-16 2:34 
GeneralCannot Download the ZIP File Pin
Member 1004250111-Oct-16 4:59
Member 1004250111-Oct-16 4:59 
GeneralRe: Cannot Download the ZIP File Pin
ronen4428-Oct-16 19:30
ronen4428-Oct-16 19:30 
Questiondownload Pin
TerryM7928-Feb-15 8:19
TerryM7928-Feb-15 8:19 
AnswerRe: download Pin
Amar zaidi30-Oct-16 11:20
Amar zaidi30-Oct-16 11:20 
General[My vote of 1] Vote 1 Pin
TonBill18-Jun-14 2:30
TonBill18-Jun-14 2:30 
GeneralRe: [My vote of 1] Vote 1 Pin
Amar zaidi30-Oct-16 11:22
Amar zaidi30-Oct-16 11:22 
GeneralMy vote of 1 Pin
LostTheMarbles16-Jun-14 2:48
professionalLostTheMarbles16-Jun-14 2:48 
GeneralRe: My vote of 1 Pin
Amar zaidi30-Oct-16 11:23
Amar zaidi30-Oct-16 11:23 
it's a pedagogic progam used to help students to reducing algebra expression

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.