diff options
Diffstat (limited to '45/CH3/EX3.5')
-rwxr-xr-x | 45/CH3/EX3.5/example_3_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/45/CH3/EX3.5/example_3_5.sce b/45/CH3/EX3.5/example_3_5.sce new file mode 100755 index 000000000..be7feb933 --- /dev/null +++ b/45/CH3/EX3.5/example_3_5.sce @@ -0,0 +1,13 @@ +//example 3.5 +clc; +clear; +disp('The boolean equation is :'); +disp('Y = A''B''C'' + A''BC'' + AB''C'' + ABC'''); +disp('Since C'' is common to each term, factor as follows :'); +disp('Y = (A''B + A''B + AB'' AB)C'''); +disp('Again, factor to get :'); +disp('Y = [A''(B'' + B) + A(B'' + B)]C'''); +disp('Now, simplify the foregoing as follows :'); +disp('Y=[A''(1) + A(1)]C'' = (A'' + A)C'''); +disp(' or Y= C'''); +disp('This final equation means that you don''t even need a logic circuit. All you need is a wire connecting input C'' to output Y.');
\ No newline at end of file |