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 --- 2096/CH1/EX1.62/ex_1_62.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 2096/CH1/EX1.62/ex_1_62.sce (limited to '2096/CH1/EX1.62') diff --git a/2096/CH1/EX1.62/ex_1_62.sce b/2096/CH1/EX1.62/ex_1_62.sce new file mode 100755 index 000000000..5e76f9048 --- /dev/null +++ b/2096/CH1/EX1.62/ex_1_62.sce @@ -0,0 +1,12 @@ +// Example 1.62. limiting error and standard deviation +clc, clear +// given : +q1=50; +q2=100; +dq1=0.02; // may be +ve or -ve +dq2=0.01; // may be +ve or-ve +Le=(((q1/(q1+q2))*dq1)+((q2/(q1+q2))*dq2))*100; +Re=sqrt(1+1); // when individul error are standard deviation,then errors in individual measurement are 2% of 50 and 1% of 100 ie., 1 and 1 +Sd=(Re/(q1+q2))*100; +disp(Le,"limiting error,Le(%) = ") +disp(Sd,"standard deviation,Sd(%) = ") -- cgit