summaryrefslogtreecommitdiff
path: root/3860/CH2/EX2.11/Ex2_11.sce
blob: 17d2bde3bdf82f61cb6a7fd3da06f0627eef193c (plain)
1
2
3
4
5
6
7
8
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')