diff options
Diffstat (limited to '3860/CH3/EX3.10/Ex3_10.txt')
-rw-r--r-- | 3860/CH3/EX3.10/Ex3_10.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/3860/CH3/EX3.10/Ex3_10.txt b/3860/CH3/EX3.10/Ex3_10.txt new file mode 100644 index 000000000..91ee090f0 --- /dev/null +++ b/3860/CH3/EX3.10/Ex3_10.txt @@ -0,0 +1,31 @@ +
+ This example is called as **Dont be greedy**
+
+ A'B' A'B AB AB'
+
+ C'D' 1
+
+ CD' 1 1 1
+
+ CD 1 1 1
+
+ CD' 1
+
+ From the map, high outputs are for 1,5,6,7,11,12,13,15
+
+ 0. 0. 0. 1.
+ 0. 1. 0. 1.
+ 0. 1. 1. 0.
+ 0. 1. 1. 1.
+ 1. 0. 1. 1.
+ 1. 1. 0. 0.
+ 1. 1. 0. 1.
+ 1. 1. 1. 1.
+
+ Evaluating expression from truth table and map
+
+!A'B'C'D + A'BC'D + A'BC D' + A'BCD + AB'CD + ABC' D' + ABC'D + ABCD !
+
+ Reduced expression using boolean algebra
+
+ G= A'BC' + A'CD + ABC + AC'D
\ No newline at end of file |