summaryrefslogtreecommitdiff
path: root/3827/CH2/EX2.2/EX2_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3827/CH2/EX2.2/EX2_2.sce')
-rw-r--r--3827/CH2/EX2.2/EX2_2.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3827/CH2/EX2.2/EX2_2.sce b/3827/CH2/EX2.2/EX2_2.sce
new file mode 100644
index 000000000..58fa419fc
--- /dev/null
+++ b/3827/CH2/EX2.2/EX2_2.sce
@@ -0,0 +1,15 @@
+//EX2_2 Simplify Z = [A + B'C + D +EF][A + B'C + (D + EF)']
+
+//clears the screen
+clc
+
+//clears already existing variables
+clear
+
+disp('Z = [A + B''C + D + EF][A + B''C + (D + E''F)]')
+disp('Let X = A + B''C')
+disp('and Y = D + EF Y'' = (D + EF)''')
+disp('Z = [X + Y][X + Y'']')
+//By uniting theorem i.e. (X + Y)(X + Y') = X
+disp('Z = X ')
+disp('Z = A + B''C')