diff options
Diffstat (limited to '3860/CH2/EX2.3/EX2_3.sce')
-rw-r--r-- | 3860/CH2/EX2.3/EX2_3.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3860/CH2/EX2.3/EX2_3.sce b/3860/CH2/EX2.3/EX2_3.sce new file mode 100644 index 000000000..f2196b787 --- /dev/null +++ b/3860/CH2/EX2.3/EX2_3.sce @@ -0,0 +1,10 @@ +//Example 2.3: Reduce a given expression
+clc; //clears the console
+clear; //clears all existing variables
+//the given expression is as follows//
+disp(' Given Expression- A''B''C''+ A''BC''+ A''BC + AB''C''')
+disp('A''C''+ A''BC + AB''C''')
+disp('A''C''+ A''B + AB''C''')
+disp('A''C''+ A''B + B''C''')
+disp('The reduced expression is = ')
+disp('B''C''+ A''B') //final reduced expression is displayed//
|