diff options
Diffstat (limited to '3860/CH2/EX2.23/Ex2_23.sce')
-rw-r--r-- | 3860/CH2/EX2.23/Ex2_23.sce | 7 |
1 files changed, 7 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.
|