Question #47694

- A 2.7 kg ball is thrown upward with an initial speed of 20.0m/s from the edge of a 45.0m high cliff. At the instant the ball is thrown, a woman starts running away from the base of the cliff with a constant speed of 6.0m/s. The woman runs in a straight line on level ground, and air resistance acting on the ball can be ignored .(a) At what angle above the horizontal should the ball be thrown so that the runner will catch it just before it hits the ground, (b) How far does the women run before she catches the ball

Expert's answer

Answer on Question #47694-Physics-Computational Physics

A 2.7kg2.7\,\mathrm{kg} ball is thrown upward with an initial speed of 20.0m/s20.0\,\mathrm{m/s} from the edge of a 45.0m45.0\,\mathrm{m} high cliff. At the instant the ball is thrown, a woman starts running away from the base of the cliff with a constant speed of 6.0m/s6.0\,\mathrm{m/s}. The woman runs in a straight line on level ground, and air resistance acting on the ball can be ignored. (a) At what angle above the horizontal should the ball be thrown so that the runner will catch it just before it hits the ground? (b) How far does the woman run before she catches the ball?

Solution

(a) The woman runs with constant speed of v1v_1. If the ball is thrown at angle α\alpha above the horizontal, its horizontal component of speed is v2cosαv_2 \cos \alpha. This is also constant, because gravity only acts vertically.

The woman and the ball start from the same xx coordinate at the same time, and each travels with constant horizontal speed. If one of them is faster than the other, it will always be ahead, and will only get further ahead as time goes on. So she can only catch the ball if its horizontal speed is the same as her speed.

So we must have


v1=v2cosαcosα=v1v2=620α=cos1620=72.5.v_1 = v_2 \cos \alpha \rightarrow \cos \alpha = \frac{v_1}{v_2} = \frac{6}{20} \rightarrow \alpha = \cos^{-1} \frac{6}{20} = 72.5^\circ.


(b) We can use the formula for the range of projectile:


import math
v2 = 20.0  # initial speed of the ball in m/s
alpha = math.radians(72.5)  # angle in radians
g = 9.8  # acceleration due to gravity in m/s^2
h = 45.0  # height of the cliff in meters
# Calculate the range
d = (v2 * math.cos(alpha) / g) * (v2 * math.sin(alpha) + math.sqrt((v2 * math.sin(alpha))**2 + 2 * g * h))
print(d)  # Output: 33.4 meters


http://www.AssignmentExpert.com/

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS