summaryrefslogtreecommitdiff
path: root/3513/CH2/EX2.5/Ex2_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3513/CH2/EX2.5/Ex2_5.sce')
-rw-r--r--3513/CH2/EX2.5/Ex2_5.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3513/CH2/EX2.5/Ex2_5.sce b/3513/CH2/EX2.5/Ex2_5.sce
new file mode 100644
index 000000000..bc310e63c
--- /dev/null
+++ b/3513/CH2/EX2.5/Ex2_5.sce
@@ -0,0 +1,9 @@
+// To determine percentage of specimens
+//page no 23
+clear
+clc;
+m=10;//years mean
+sd=2;// years standard deviation
+z=1.64;//The values of Z from normal tables
+x=(z*sd)-m;
+mprintf("Therefore the value of x =%.3f.years",abs(x));