summaryrefslogtreecommitdiff
path: root/3860/CH2/EX2.9
diff options
context:
space:
mode:
Diffstat (limited to '3860/CH2/EX2.9')
-rw-r--r--3860/CH2/EX2.9/Ex2_9.sce8
-rw-r--r--3860/CH2/EX2.9/Ex2_9.txt12
2 files changed, 20 insertions, 0 deletions
diff --git a/3860/CH2/EX2.9/Ex2_9.sce b/3860/CH2/EX2.9/Ex2_9.sce
new file mode 100644
index 000000000..75d02db23
--- /dev/null
+++ b/3860/CH2/EX2.9/Ex2_9.sce
@@ -0,0 +1,8 @@
+//Example 2.9: Finding reduced boolean expression using Boolean laws
+clc // Clears the console
+disp('Z2 = A''BCD + AB''CD + ABC''D + ABCD'' + ABCD')
+disp('the last terms ABCD can be combined with each of the others. Thus, if we make four copies of it and then utilize for times we obtain')
+disp('Z2 = BCD + ACD + ABD + ABC')
+disp('No further simplification is possible; this is minimum SOP form')
+disp('Z1 = A''BCD + AB''CD + ABC''D + ABCD'' ')
+disp('In case of Z1 no simplification is possible it has 16 literals whereas expression for Z2 only has 12 literals.')
diff --git a/3860/CH2/EX2.9/Ex2_9.txt b/3860/CH2/EX2.9/Ex2_9.txt
new file mode 100644
index 000000000..66f2c0d78
--- /dev/null
+++ b/3860/CH2/EX2.9/Ex2_9.txt
@@ -0,0 +1,12 @@
+
+ Z2 = A'BCD + AB'CD + ABC'D + ABCD' + ABCD
+
+ the last terms ABCD can be combined with each of the others. Thus, if we make four copies of it and then utilize for times we obtain
+
+ Z2 = BCD + ACD + ABD + ABC
+
+ No further simplification is possible; this is minimum SOP form
+
+ Z1 = A'BCD + AB'CD + ABC'D + ABCD'
+
+ In case of Z1 no simplification is possible it has 16 literals whereas expression for Z2 only has 12 literals.