From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 149/CH35/EX35.10/ex10.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 149/CH35/EX35.10/ex10.sce (limited to '149/CH35/EX35.10') diff --git a/149/CH35/EX35.10/ex10.sce b/149/CH35/EX35.10/ex10.sce new file mode 100755 index 000000000..6159bcfc5 --- /dev/null +++ b/149/CH35/EX35.10/ex10.sce @@ -0,0 +1,13 @@ +clc +disp('m1,d1 and n1 denotes mean,deviation and no. of objects in first sample') +m1=67.85 +d1=2.56 +n1=6400 +disp('m2,d2 and n2 denotes mean,deviation and no. of objects in second sample') +m2=68.55 +d2=2.52 +n2=1600 +disp('S.E. of the difference of the mean heights is ') +e=((d1^2/n1)+(d2^2/n2))^0.5 +m1-m2 +disp('|m1-m2| > 10e,this is highly significant.hence,the data indicates that the sailors are on the average taller than the soldiers.') \ No newline at end of file -- cgit