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

  • Thread starter Thread starter xovangam
  • Start date Start date
Click For Summary

Homework Help Overview

The discussion revolves around isolating the variable 'v' in the projectile range equation that includes an initial height. The original poster presents a specific formula for the range of a projectile and seeks assistance in rewriting it to express 'v' in terms of other known variables.

Discussion Character

  • Exploratory, Mathematical reasoning, Problem interpretation, Assumption checking

Approaches and Questions Raised

  • Participants explore algebraic manipulations of the projectile range equation, particularly focusing on the implications of squaring both sides of the equation. There are discussions about the resulting forms of the equation and whether it leads to a quadratic in 'v' or 'v^2'. Some participants question the correctness of earlier statements regarding the nature of the resulting equation.

Discussion Status

The discussion is active, with various participants providing insights and corrections. There is a mix of agreement and clarification regarding the algebraic steps taken, particularly around the formation of a quadratic equation. Some participants suggest that the equation can be simplified further, while others emphasize the importance of correctly identifying the form of the equation after manipulation.

Contextual Notes

Participants are working under the constraints of a homework assignment, which may limit the information available or the methods they can use. There is also a focus on ensuring that all variables are considered positive, which may affect the simplification of the final expression.

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)
 
Looks good. So now have something of the form

[tex]\frac{A}{Bv^2}+C=D[/tex]

This is very easy to solve for v! Indeed:

[tex]\frac{A}{Bv^2}=D-C[/tex]

Thus

[tex]\frac{Bv^2}{A}=\frac{1}{D-C}[/tex]

Hence

[tex]v^2=\frac{A}{B(D-C)}[/tex]
 
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))

?
 
Seems right!
 
and can i further simply that to:

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

?
 
If you know that everything is positive, yes.
 
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
 
  • #10
Ray Vickson said:
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

If you check the solution in the previous post, you see that you do end up with a quadratic equation in v. Is the solution wrong somewhere?
 
  • #11
The equation you wrote before had the form
A/v - Bv = sort(v^2 + c), so squaring it gives
A^2 /v^2 - 2AB + B^2 v^2 = c + v^2. Multiply through by v^2 to get a quadratic in v^2.

RGV
 
  • #12
Ray Vickson said:
The equation you wrote before had the form
A/v - Bv = sort(v^2 + c), so squaring it gives
A^2 /v^2 - 2AB + B^2 v^2 = c + v^2. Multiply through by v^2 to get a quadratic in v^2.

RGV

And in this case, it was a quadratic. Like I claimed. I don't see your point.
 
  • #13
I was responding to the statement that it is quadratic in *v* (not v^2). Of course, that might have been a typo.

RGV
 
  • #14
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...
 
  • #15
The equation becomes A^2 - 2AB v^2 + B^2 v^4 = c v^2 + v^4, where B is not equal to +1 or -1, so the v^4 terms do not cancel.

RGV
 
  • #16
Ray Vickson said:
The equation becomes A^2 - 2AB v^2 + B^2 v^4 = c v^2 + v^4, where B is not equal to +1 or -1, so the v^4 terms do not cancel.

RGV

In this case, they do! So in this case, we do have a quadratic equation. (or did I make a mistake anywhere??). I really don't see what the big deal is here.
 
  • #17
You are right! Sorry: I was looking at the wrong equation.

RGV
 
  • #18
In brief :
 

Attachments

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

Similar threads

Replies
3
Views
3K
Replies
5
Views
2K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 15 ·
Replies
15
Views
27K
Replies
1
Views
1K
Replies
3
Views
2K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 8 ·
Replies
8
Views
3K