| A hunter is _m
meters away from a deer when he releases an arrow that
moves at _a meters per second. The sound of the shot also heads outward at 340 m/s. How much time does the deer have in which to duck between when he hears the the arrow and when it reaches him? |
| a=r(100,175,1);
m=r(60,100,1); scale=2; result= (m/a)-(m/340)%3; |
| The "ducking time" starts when the deer
hears the sound and ends when the arrow arrives.
You will need to find 2 times and do some subtraction. |