diff options
Diffstat (limited to '3886/CH18/EX18.3/18_3.sce')
-rw-r--r-- | 3886/CH18/EX18.3/18_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3886/CH18/EX18.3/18_3.sce b/3886/CH18/EX18.3/18_3.sce new file mode 100644 index 000000000..74427d055 --- /dev/null +++ b/3886/CH18/EX18.3/18_3.sce @@ -0,0 +1,14 @@ +//A golf ball
+h0=10 //m
+//u1=sqrt(2*g*h0)
+u2=0
+v2=0
+//defination of coefficient of restitution gives
+//v1=%e*sqrt(2*g*h0) in upward direction
+//From kinematic equation
+h1=10*0.894^2 //m
+//After second bounce
+h2=6.388 //m
+//After third bounce
+h3=5.105 //m
+printf("\nh1=%.3f m\nAfter second bounce h2=%.3f m\nAfter third bounce h3=%.3f m",h1,h2,h3)
|