diff options
Diffstat (limited to '3860/CH2/EX2.7/Ex2_7.txt')
-rw-r--r-- | 3860/CH2/EX2.7/Ex2_7.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/3860/CH2/EX2.7/Ex2_7.txt b/3860/CH2/EX2.7/Ex2_7.txt new file mode 100644 index 000000000..4f835c667 --- /dev/null +++ b/3860/CH2/EX2.7/Ex2_7.txt @@ -0,0 +1,36 @@ +
+ Given truth table
+
+ ****************************************
+
+ A B C | f f'
+
+ 0 0 0 | 1 1
+
+ 0 0 1 | 0 0
+
+ 0 1 0 | 1 0
+
+ 0 1 1 | 1 0
+
+ 1 0 0 | 1 0
+
+ 1 0 1 | 0 0
+
+ 1 1 0 | 0 1
+
+ 1 1 1 | 0 1
+
+ f(A,B,C) = summation(1,2,3,4,5)
+
+ The complement of function is as given below
+
+ f'(A,B,C) = summation(0,6,7)
+
+ = A'B'C' + ABC' + ABC
+
+ = A'B'C' + AB
+
+ f = (A + B + C)(A' + B'
+
+ This is the reduced POS expression
\ No newline at end of file |