diff options
Diffstat (limited to '48/CH3/EX3.3')
-rwxr-xr-x | 48/CH3/EX3.3/eg_3_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/48/CH3/EX3.3/eg_3_3.sce b/48/CH3/EX3.3/eg_3_3.sce new file mode 100755 index 000000000..a12240181 --- /dev/null +++ b/48/CH3/EX3.3/eg_3_3.sce @@ -0,0 +1,14 @@ +clear
+clc;
+disp("L.H.S = xy+x^y^+yz");
+disp("R.H.S = xy+x^y^+x^z");
+disp("Based on consensus theorem")
+disp("we can write x^y^+yz as x^y^+yz+x^z bcoz the two expressions are equal");
+disp("(x^y^+yz+x^z(y+y^))=x^y^+yz+x^yz+x^y^z");
+disp("x^y^+yz+x^yz+x^y^z=x^y^(1+z)+yz(1+x^)");
+disp("x^y^+yz=x^y^+yz+x^z");
+disp("so L.H.S=xy+x^y^+yz=xy+x^y^+yz+x^z");
+disp("In the similar way xy+yz+x^z can be simplified as xy+x^z");
+disp("so L.H.S becomes xy+x^z+x^y^");
+disp("thus L.H.S= R.H.S");
+disp("hence proved")
\ No newline at end of file |