diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1844/CH2/EX2.4/2Q4.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1844/CH2/EX2.4/2Q4.sce')
-rw-r--r-- | 1844/CH2/EX2.4/2Q4.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1844/CH2/EX2.4/2Q4.sce b/1844/CH2/EX2.4/2Q4.sce new file mode 100644 index 000000000..05b355bad --- /dev/null +++ b/1844/CH2/EX2.4/2Q4.sce @@ -0,0 +1,19 @@ +clc
+x=2.86
+y=8.34
+x1=0.005
+y1=0.005
+ex=0.0025
+ey=0.0025
+
+s1= y*x1 + x*y1
+
+es= x*y*sqrt((ex/x)^2 + (ey/y)^2)
+
+sn2= x*y +es
+sn3=x*y - es
+printf('The maximum error =%f\n',s1)
+printf(' Hence the most probable error = +/- %f\n',es)
+printf(' The most probable limits of quantity s are %f',sn2)
+printf(' and %f\n',sn3)
+
|