From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3860/CH3/EX3.7/Ex3_7.sce | 9 +++++++++ 3860/CH3/EX3.7/Ex3_7.txt | 12 ++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 3860/CH3/EX3.7/Ex3_7.sce create mode 100644 3860/CH3/EX3.7/Ex3_7.txt (limited to '3860/CH3/EX3.7') diff --git a/3860/CH3/EX3.7/Ex3_7.sce b/3860/CH3/EX3.7/Ex3_7.sce new file mode 100644 index 000000000..18f53b0be --- /dev/null +++ b/3860/CH3/EX3.7/Ex3_7.sce @@ -0,0 +1,9 @@ +//Example 3.7 Reduction using K-Map +clc; //clears the console window +clear; //clears the variable browser +disp('f = a''b''c + a''bc'' + a''bc + ab''c''') +disp('The mapping is shown below') +disp(' A''B'' A''B AB AB''') +disp('C'' 1 1 - 1') +disp('C - 1 - -') //The kmap for f is displayed// +disp('f = a''b + b''c''') diff --git a/3860/CH3/EX3.7/Ex3_7.txt b/3860/CH3/EX3.7/Ex3_7.txt new file mode 100644 index 000000000..866501200 --- /dev/null +++ b/3860/CH3/EX3.7/Ex3_7.txt @@ -0,0 +1,12 @@ + + f = a'b'c + a'bc' + a'bc + ab'c' + + The mapping is shown below + + A'B' A'B AB AB' + + C' 1 1 - 1 + + C - 1 - - + + f = a'b + b'c' \ No newline at end of file -- cgit