summaryrefslogtreecommitdiff
path: root/2825/CH19/EX19.28/Ex19_28.sce
diff options
context:
space:
mode:
Diffstat (limited to '2825/CH19/EX19.28/Ex19_28.sce')
-rwxr-xr-x2825/CH19/EX19.28/Ex19_28.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2825/CH19/EX19.28/Ex19_28.sce b/2825/CH19/EX19.28/Ex19_28.sce
new file mode 100755
index 000000000..be5c49acf
--- /dev/null
+++ b/2825/CH19/EX19.28/Ex19_28.sce
@@ -0,0 +1,16 @@
+//Ex19_28 Pg-998
+clc
+
+disp("AB + A(B + C) + B(B + C) = AB + AB + AC + BB + BC")
+//using distributive law
+disp(" = AB + AC + B +BC ")
+//using law 6
+disp(" = AB + AC + B(1 + C) ")
+//taking common B from B + BC
+disp(" = AB + AC + B")
+//using law 7
+disp(" = B(A + 1) + AC")
+//taking common B from AB + B
+disp(" = B + AC")
+//using law 7
+disp("Therefore AB + A(B + C) + B(B + C) = B + AC")