diff options
Diffstat (limited to '1844/CH2/EX2.6')
-rw-r--r-- | 1844/CH2/EX2.6/2Q6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1844/CH2/EX2.6/2Q6.sce b/1844/CH2/EX2.6/2Q6.sce new file mode 100644 index 000000000..0a66e171e --- /dev/null +++ b/1844/CH2/EX2.6/2Q6.sce @@ -0,0 +1,16 @@ +clc
+
+x=(4.86)
+n=2
+x1=0.005
+ex=0.0025
+s1=n*x^(n-1)*x1
+es=n*x^(n-1)*ex
+
+sn2= x^n + es
+sn3= x^n - 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)
|