diff options
Diffstat (limited to '3860/CH2/EX2.23')
-rw-r--r-- | 3860/CH2/EX2.23/Ex2_23.sce | 7 | ||||
-rw-r--r-- | 3860/CH2/EX2.23/Ex2_23.txt | 8 |
2 files changed, 15 insertions, 0 deletions
diff --git a/3860/CH2/EX2.23/Ex2_23.sce b/3860/CH2/EX2.23/Ex2_23.sce new file mode 100644 index 000000000..5540da369 --- /dev/null +++ b/3860/CH2/EX2.23/Ex2_23.sce @@ -0,0 +1,7 @@ +//Example 2.23: Reduce expression using Boolean laws
+clc // Clears the console
+disp('A''BCD + A''BC''D + B''EF + CDE''G + A''DEF + A''B''EF')
+disp('= A''BD + B''EF + CDE''G + A''DEF')
+disp('But A''BD $ B''EF = A''DEF and this reduces to ')
+disp('= A''BD + B''EF + CDE''G')
+//the reduced expression is displayed.
diff --git a/3860/CH2/EX2.23/Ex2_23.txt b/3860/CH2/EX2.23/Ex2_23.txt new file mode 100644 index 000000000..d170e37ef --- /dev/null +++ b/3860/CH2/EX2.23/Ex2_23.txt @@ -0,0 +1,8 @@ +
+ A'BCD + A'BC'D + B'EF + CDE'G + A'DEF + A'B'EF
+
+ = A'BD + B'EF + CDE'G + A'DEF
+
+ But A'BD $ B'EF = A'DEF and this reduces to
+
+ = A'BD + B'EF + CDE'G
\ No newline at end of file |