diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /48/CH3/EX3.1/eg_1.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '48/CH3/EX3.1/eg_1.sce')
-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 |