summaryrefslogtreecommitdiff
path: root/3860/CH3/EX3.7
diff options
context:
space:
mode:
Diffstat (limited to '3860/CH3/EX3.7')
-rw-r--r--3860/CH3/EX3.7/Ex3_7.sce9
-rw-r--r--3860/CH3/EX3.7/Ex3_7.txt12
2 files changed, 21 insertions, 0 deletions
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