Jing S. answered 09/09/19
Software Engineer Who Loves Math, Physics and Programming
This kind of projectile motion can be decomposed into two separate motion:
- A constant velocity motion in the horizontal direction, or x direction, at a speed of V*cos(theta)
- A constant acceleration motion in the vertical direction, or y direction, at a initial speed of v*sin(theta)
- The time the ball flies in the air can be decided by the following fact: By the time the balls falls back down to the same height, the displacement on the y direction is 0, thus
v*sin(theta)*t - 1/2gt2 = 0, thus t = 2v*sin(theta)/g
- The displacement on the x direction can then be found by
dx = v*cos(theta)*t = v*cos(ethta) * 2v*sin(theta)/g = 2v2sin(theta)*cos(theta)/g
= v2sin(2*theta)/g
- Note v = 42, theta = 45, and g = 9.8, so we get
dx = 422 * 1.0 /9.8 = 180m
- Note from trigonometry, sin(2*theta) = 2*sin(theta) * cos(theta)