summaryrefslogtreecommitdiff
path: root/3860/CH2/EX2.28
diff options
context:
space:
mode:
Diffstat (limited to '3860/CH2/EX2.28')
-rw-r--r--3860/CH2/EX2.28/Ex2_28.sce8
-rw-r--r--3860/CH2/EX2.28/Ex2_28.txt10
2 files changed, 18 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.
diff --git a/3860/CH2/EX2.28/Ex2_28.txt b/3860/CH2/EX2.28/Ex2_28.txt
new file mode 100644
index 000000000..a7378e954
--- /dev/null
+++ b/3860/CH2/EX2.28/Ex2_28.txt
@@ -0,0 +1,10 @@
+
+ f = (A + B + C) ( A' + B') = AB' + A'( B + C) = AB' + A'B + A'C
+
+ f = AA' + AB' + BA' + BB' + CA' + CB'
+
+ f = AB' + A'B + A'C + B'C
+
+ The SOP form of given expression is displayed
+
+ The term B'C can then be removed because it is the consensus of AB' and A'C \ No newline at end of file