summaryrefslogtreecommitdiff
path: root/3860/CH2/EX2.28/Ex2_28.sce
diff options
context:
space:
mode:
Diffstat (limited to '3860/CH2/EX2.28/Ex2_28.sce')
-rw-r--r--3860/CH2/EX2.28/Ex2_28.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/3860/CH2/EX2.28/Ex2_28.sce b/3860/CH2/EX2.28/Ex2_28.sce
new file mode 100644
index 000000000..9cbaa3602
--- /dev/null
+++ b/3860/CH2/EX2.28/Ex2_28.sce
@@ -0,0 +1,8 @@
+//Example 2.28: Manipulation POS expression into SOP Expression.
+clc // Clears the console
+disp('f = (A + B + C) ( A'' + B'') = AB'' + A''( B + C) = AB'' + A''B + A''C')
+disp('f = AA'' + AB'' + BA'' + BB'' + CA'' + CB''')// converting into disjunctive normal form.
+disp('f = AB'' + A''B + A''C + B''C')
+disp(' The SOP form of given expression is displayed')
+disp(' The term B''C can then be removed because it is the consensus of AB'' and A''C')
+//the reduced expression is displayed.