summaryrefslogtreecommitdiff
path: root/3860/CH2/EX2.11/Ex2_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3860/CH2/EX2.11/Ex2_11.sce')
-rw-r--r--3860/CH2/EX2.11/Ex2_11.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3860/CH2/EX2.11/Ex2_11.sce b/3860/CH2/EX2.11/Ex2_11.sce
new file mode 100644
index 000000000..17d2bde3b
--- /dev/null
+++ b/3860/CH2/EX2.11/Ex2_11.sce
@@ -0,0 +1,9 @@
+//Example 2.11: Finding full adder expressions
+clc // Clears the console
+disp('For the full adder C is used as Cin ')
+disp('Cout = a''bc + ab''c + abc'' + abc')
+disp('s = a''b''c + a''bc'' + ab''c'' + abc')
+disp('The simplified expression of Cout is as given below')
+disp('Cout = bc + ac + ab')
+disp('s is already in minimum SOP form')
+