How Do You Isolate 'v' in a Projectile Range Equation with Initial Height?

  • Thread starter Thread starter xovangam
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
17 replies · 3K views
xovangam
Messages
18
Reaction score
0
given this formula for the range of a projectile when the initial height (y) is not zero:

Code:
d = (v * cos(a) / g) * (v * sin(a) + sqrt((v * sin(a))[SUP]2[/SUP] + 2 * g * y)

in a project I'm working on i need to compute 'v' given 'd', 'a', 'y' and 'g', so i would like to rewrite this equation in terms of 'v' - my trig identities aren't so hot, could someone possibly help me to express this equation in terms of 'v' instead of 'd' ?

TIA

*er - this was supposed to post in General Math...oops. i don't know how to move it there w/o crossposting..
 
Last edited:
Physics news on Phys.org
Hi xovangam! :smile:


So the equation is

[tex]d=\frac{v\cos(a)}{g}(v\sin(a)+\sqrt{v^2\sin^2(a)+2gy})[/tex]

Right?

The square root is the most important problem here. So you'll first going to need to rewrite your equation as

[tex]\frac{gd}{v\cos(a)}-v\sin(a)=\sqrt{v^2\sin^2(a)+2gy}[/tex]

and square both sides. You'll end up with a quadratic equation in v.
 
is this on the right track ?

Code:
((gd/v*cos(a)) - v*sin(a))^2 = v^2*sin(a)^2 + 2gy

A = gd/v*cos(a)
B = v*sin(a)

(A - B)(A - B)
= A^2 - AB - AB + B^2
= A^2 - 2AB + B^2

(gd/v*cos(a))^2 - 2*(gd/v*cos(a))*(v*sin(a)) + (v*sin(a))^2 = v^2*sin(a)^2 + 2*g*y

=> (gd)^2/(v*cos(a))^2 - (2*gd*v*sin(a))/(v*cos(a)) + v^2*sin(a))^2 = v^2*sin(a)^2 + 2*g*y

=> (gd)^2/(v^2*cos(a)^2) - (2*gd*sin(a))/(cos(a)) = 2*g*y

how do i get v^2*cos(a)^2 out of the bottom of the fraction on the left, multiply both sides by v^2*cos(a)^2 ? it seems like I'm going to end up with 'B' = 0 in the simplified equation ? (i.e. Av^2 + Bv + C)
 
cool. so

Code:
A = (g*d)^2
B = cos(a)^2
C = -(2*g*d*sin(a))/(cos(a))
D = 2*g*y

and thus

Code:
v^2 = (g*d)^2/(cos(a)^2*(2*g*y + (2*g*d*sin(a))/cos(a))

?
 
and can i further simply that to:

Code:
v = (g*d)/cos(a) * sqrt(2 * g * d * tan(a) + 2 * g * y)

?
 
micromass said:
Hi xovangam! :smile:


So the equation is

[tex]d=\frac{v\cos(a)}{g}(v\sin(a)+\sqrt{v^2\sin^2(a)+2gy})[/tex]

Right?

The square root is the most important problem here. So you'll first going to need to rewrite your equation as

[tex]\frac{gd}{v\cos(a)}-v\sin(a)=\sqrt{v^2\sin^2(a)+2gy}[/tex]

and square both sides. You'll end up with a quadratic equation in v.

No. You will end up with a quadratic equation in v^2, so if you set y = v^2 you get a quadratic in y.

RGV
 
Ray Vickson said:
I was responding to the statement that it is quadratic in *v* (not v^2). Of course, that might have been a typo.

RGV

Really, excuse me, I don't understand what the confusion is here. If you square both sides of the equation and rework it a bit, then the resulting equation will be quadratic in v, no??
This is certainly not true with every such equation (where you indeed have to make a substitution), but it is true with this equation, and that's all I said...
 
In brief :
 

Attachments

  • roots.JPG
    roots.JPG
    28.5 KB · Views: 496