summaryrefslogtreecommitdiff
path: root/1553/CH26/EX26.2/26Ex2.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH26/EX26.2/26Ex2.sce')
-rw-r--r--1553/CH26/EX26.2/26Ex2.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1553/CH26/EX26.2/26Ex2.sce b/1553/CH26/EX26.2/26Ex2.sce
new file mode 100644
index 000000000..91a06a065
--- /dev/null
+++ b/1553/CH26/EX26.2/26Ex2.sce
@@ -0,0 +1,9 @@
+//Chapter 27 Ex2
+clc;
+clear;
+close;
+ //the ratio of their distances is 7: 4 thus assuming dist of A as 7, dist of B is3
+ distA=7; distB=3; //from given conditions
+ gain=84;
+ distPost=gain/(distB/distA);
+ mprintf("The pole must be placed %.0f meter away from starting point",distPost);