summaryrefslogtreecommitdiff
path: root/3871/CH3/EX3.3
diff options
context:
space:
mode:
Diffstat (limited to '3871/CH3/EX3.3')
-rw-r--r--3871/CH3/EX3.3/Ex3_3.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3871/CH3/EX3.3/Ex3_3.sce b/3871/CH3/EX3.3/Ex3_3.sce
new file mode 100644
index 000000000..8f96ec025
--- /dev/null
+++ b/3871/CH3/EX3.3/Ex3_3.sce
@@ -0,0 +1,17 @@
+//===========================================================================
+//chapter 3 example 2
+
+clc;clear all;
+
+
+//variable declaration
+Am = 205.3*10**-6; //measured value in Ω
+A = 201.4*10**-6; //True value in Ω
+
+//calculations
+e0 = Am-A; //absolute error in Ω
+r = (e0/(A))*100; //relative error in %
+
+//result
+mprintf("abslotue error = %3.2e F ",e0);
+mprintf("\nrelative error = %3.2f percentage",r);