diff options
Diffstat (limited to '2825/CH19/EX19.27/Ex19_27.sce')
-rwxr-xr-x | 2825/CH19/EX19.27/Ex19_27.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2825/CH19/EX19.27/Ex19_27.sce b/2825/CH19/EX19.27/Ex19_27.sce new file mode 100755 index 000000000..261286399 --- /dev/null +++ b/2825/CH19/EX19.27/Ex19_27.sce @@ -0,0 +1,15 @@ +//Ex19_27 Pg-997
+clc
+
+disp("(A+B)(A+C) = AA + AC + AB + BC ")
+//by distributive law
+disp(" = A + AC + AB +BC")
+//by theorem(6)
+disp(" = A(1 + C) + AB + BC")
+//by distributive law
+disp(" = A.1 + AB + BC ")
+//by theorem(3)
+disp(" = A(B + 1) + BC")
+//by distributive law
+disp(" = A + BC")
+disp("Therefore (A+B)(A+C) = A + BC")
|