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 --- 1673/CH1/EX1.2/1_2.sce | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 1673/CH1/EX1.2/1_2.sce (limited to '1673/CH1/EX1.2') diff --git a/1673/CH1/EX1.2/1_2.sce b/1673/CH1/EX1.2/1_2.sce new file mode 100755 index 000000000..93b1b450f --- /dev/null +++ b/1673/CH1/EX1.2/1_2.sce @@ -0,0 +1,10 @@ +//example 1.2 +//percentage accuracy +//page 9 +clc;clear;close; +x=0.51;// the number given +n=2;//correcting upto 2 decimal places +dx=((10^-n)/2) +p_a=(dx/x)*100;//percentage accuracy +printf('the percentage accuracy of %f after correcting to two decimal places is %f',x,p_a); + -- cgit