summaryrefslogtreecommitdiff
path: root/1964/CH15/EX15.12
diff options
context:
space:
mode:
Diffstat (limited to '1964/CH15/EX15.12')
-rwxr-xr-x1964/CH15/EX15.12/ex15_12.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/1964/CH15/EX15.12/ex15_12.sce b/1964/CH15/EX15.12/ex15_12.sce
new file mode 100755
index 000000000..e980e0338
--- /dev/null
+++ b/1964/CH15/EX15.12/ex15_12.sce
@@ -0,0 +1,20 @@
+//Chapter-15, Example 15.12, Page 502
+//=============================================================================
+clc
+clear
+//CALCULATIONS
+disp('given=> Y=(A+AB)')
+//given in the question//
+disp('Y=A(1+B)')//by distributive law
+disp('A.1')//by law 2
+disp('A')//by law 4
+disp('given=> Y=(A+A''B)')
+disp('(A+A'').(A+B)')//by distributive law
+disp('1.(A+B)')//by law 6
+disp('A+B')//by law 4
+disp('given=>(AB+A''C+BC)')
+disp('AB+A''C+BC(A+A'')')
+disp('AB+A''C+ABC+A''BC')
+disp('AB(1+C)+A''C(1+B)')//by consensus theorem
+disp('AB+A''C')
+//=================================END OF PROGRAM=======================================================================================================