summaryrefslogtreecommitdiff
path: root/3886/CH13/EX13.1/13_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3886/CH13/EX13.1/13_1.sce')
-rw-r--r--3886/CH13/EX13.1/13_1.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3886/CH13/EX13.1/13_1.sce b/3886/CH13/EX13.1/13_1.sce
new file mode 100644
index 000000000..43f13dc2a
--- /dev/null
+++ b/3886/CH13/EX13.1/13_1.sce
@@ -0,0 +1,13 @@
+//Pilot and his bomber
+//refer fig.13.3
+h=2000 //m
+u=(600*1000)/(60*60) //m/sec
+//initial velocity in vertical direction
+//gravitational acceleration=9.81 m/sec^2
+//if t is the time of flight
+t=sqrt((2000*2)/(9.81)) //sec
+//during this period horizontal distance travelled by the bomb must be (d)
+d=u*t //m
+printf("Bomb should be released at %.2f m from the target",d)
+
+