summaryrefslogtreecommitdiff
path: root/3782/CH5/EX5.1
diff options
context:
space:
mode:
Diffstat (limited to '3782/CH5/EX5.1')
-rw-r--r--3782/CH5/EX5.1/Ex5_1.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/3782/CH5/EX5.1/Ex5_1.sce b/3782/CH5/EX5.1/Ex5_1.sce
new file mode 100644
index 000000000..d7a26bfef
--- /dev/null
+++ b/3782/CH5/EX5.1/Ex5_1.sce
@@ -0,0 +1,29 @@
+
+//
+
+//
+
+a=150
+b=100
+ar=2.525
+br=1.755
+
+sc=1000
+d=(a*a)/(sc*sc)
+
+A=0.0673*d*d
+
+fa=ar-A
+
+printf("\n correct reading on A = %0.3f meters',fa)
+
+
+d=(b*b)/(sc*sc)
+
+B=0.0673*d*d
+fb=br-B
+
+printf("\n correct reading of B = %0.3f meters',fb)
+
+AB=fa-fb
+printf("\n true difference is %0.3f meters',AB)