diff options
Diffstat (limited to '3860/CH2/EX2.15')
-rw-r--r-- | 3860/CH2/EX2.15/Ex2_15.sce | 5 | ||||
-rw-r--r-- | 3860/CH2/EX2.15/Ex2_15.txt | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/3860/CH2/EX2.15/Ex2_15.sce b/3860/CH2/EX2.15/Ex2_15.sce new file mode 100644 index 000000000..3538be05a --- /dev/null +++ b/3860/CH2/EX2.15/Ex2_15.sce @@ -0,0 +1,5 @@ +//Example 2.15: Reduce expression using Boolean laws
+clc // Clears the console
+disp('xyz + x''y + x''y'' = xyz + x''')
+disp(' = x'' + yz ')
+//the reduced expression is displayed.
diff --git a/3860/CH2/EX2.15/Ex2_15.txt b/3860/CH2/EX2.15/Ex2_15.txt new file mode 100644 index 000000000..8a9d3868e --- /dev/null +++ b/3860/CH2/EX2.15/Ex2_15.txt @@ -0,0 +1,4 @@ +
+ xyz + x'y + x'y' = xyz + x'
+
+ = x' + yz
\ No newline at end of file |