Finding Angle of Elevation to hit X, Y

490 Views Asked by At

My ultimate goal is to find the angle of elevation necessary to launch a projectile from the origin to (x,y) with initial velocity V and under gravitational acceleration g. Wind resistance is ignored.

This is where I've started, and the path I've taken. First, I took the parametrics for x and y.

x = V * cosθ * t

y = V * sinθ * t - (g / 2) * t^2

-Then, I found t in terms of x, V and θ...

t = x / (V * cosθ)

-I plugged that value in for t in the y equation...

y = V * sinθ* (x / (V * cosθ)) - (g / 2) * (x^2 / (V^2 * (cosθ)))

y = x * tan⁡θ - (g * x^2) / (2 * V^2 * (cos⁡θ)^2)

I don't know what to do from here. I need to find θ in terms of x, y, V, and g, but it seems impossible to get all of the θ's into a single term. (x, y, V and g will be known when I use the equation).

1

There are 1 best solutions below

5
On BEST ANSWER

Our equation looks like $y=x\tan\theta+\dfrac{k}{\cos^2\theta}x^2$ for a certain constant $k$.

Rewrite this as $y=x\tan\theta+kx^2\,\sec^2\theta$, and use the fact that $\sec^2\theta=1+\tan^2\theta$.

We end up with a quadratic equation in the variable $w=\tan\theta$. Solve for $w$, using the Quadratic Formula. Now we have an expression for $\tan\theta$. Apply the $\arctan$ function to get $\theta$.