The first thing you need to do is to decompose the velocity into its vertical and horizontal components. The two components are found using simple trig: a 30-60-90 triangle representing the components. In this case, the velocity is the hypotenuse, the vertical component is the shorter leg (the leg opposite the 30 degree angle), and the horizontal component is the longer leg (opposite the 60 degree angle).
A 30-60-90 triangle always has sides in the following proportions: 1:sqrt(3):2, given in the same order as the angles listed and corresponding to the side opposite the angle. We know that the hypotenuse is 40, so the vertical component is going to be 20 and the horizontal component will be 20*sqrt(3).
The horizontal component is constant:
Vh(t) = 20*sqrt(3)
The vertical component will vary with time, due to gravity. Since gravity is going to have an effect of -9.8m/(s^2), the vertical component will begin at 20, and decrease by 9.8 every second, or:
Vv(t) = 20 - 9.8t
Now you need to find the time at which the horizontal position (the integral of Vh(t)) equals 50, as that is the time at which the stream of water will hit the building. Once you have that time (haven't done the math, but it should be around 1.3 seconds), take the integral of Vv(t) to find the vertical position function, and plug in the value of t from the previous step.
|