diff options
Diffstat (limited to '48/CH3/EX3.1')
-rwxr-xr-x | 48/CH3/EX3.1/eg_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/48/CH3/EX3.1/eg_1.sce b/48/CH3/EX3.1/eg_1.sce new file mode 100755 index 000000000..d64b6503b --- /dev/null +++ b/48/CH3/EX3.1/eg_1.sce @@ -0,0 +1,13 @@ +clear
+clc;
+disp("T(x,y,z)=x^y^z+yz+xz");
+disp("**Minimise the given expression**");
+disp("**Since z is common in every term taking z common**");
+disp("T(x,y,z)=z(x^y^+y+x)");
+disp("**From the property a+a^b=a+b **");
+disp("T(x,y,z)=z(x^+y+x)");
+disp("**Since we know that a+a^=1 **");
+disp("T(x,y,z)=z(1+y)");
+disp("**we know that 1+a=1 **");
+disp("T(x,y,z)=z.1");
+disp("T(x,y,z)=z");
\ No newline at end of file |