Log in

View Full Version : Parabola Equations


Ether
09-01-2014, 21:42
A projectile is launched at x=0 .y=h with speed V and angle θ. What is the equation of the parabola (no air drag)?

y = ax2 + bx + c

a=(g/2)/(Vcosθ)2 ... (g is negative)

b=tanθ

c=h


Given 2 points (x1,y1) and (x2,y2), find the equation of the parabola that passes through the origin and those 2 points

y = ax2 + bx + c

a=(x2y1-x1y2)/(x12x2-x1x22)

b=-(x22y1-x12y2)/(x12x2-x1x22)

c=0


Given 2 points (x1,y1) and (x2,y2), find the equation of the parabola that passes through (0,h) and those 2 points

y = ax2 + bx + c

a=(x1(h-y2)+x2y1-hx2)/(x12x2-x1x22)

b=-(x12(h-y2)+x22y1-hx22)/(x12x2-x1x22)

c=h


Given 3 points (x1,y1), (x2,y2), and (x3,y3) find the equation of the parabola that passes through those 3 points

It gets messy. (http://www.chiefdelphi.com/forums/attachment.php?attachmentid=15785&stc=1&d=1389321141)


Given parabola y = ax2 + bx + c , where a<0, find the value of x and y at the apex

x = -b/(2a) ... y=c-b2/(4a)


Given parabola y = ax2 + bx + c , where a<0, find the value of x and y for which the slope is -1

x = -(1+b)/(2a) ... y = c+(b+1)2/(4a)-b(b+1)/(2a)


someone please check my math

MechEng83
09-01-2014, 22:12
someone please check my math

I'm not sure if that's a challenge, or a dare.

Ether
09-01-2014, 22:58
I'm not sure if that's a challenge, or a dare.

Reps if you find an error.

Ether
10-01-2014, 10:22
Given the coordinates (xp,yp) of the apex of a parabola whose width is W at a distance D below the apex, find the equation of the parabola.

Ether
10-01-2014, 12:22
Given 2 points (x1,y1) and (x2,y2), and the slope m1 at (x1,y1), find the equation of the parabola.

Sparkyshires
10-01-2014, 12:54
have to ask: did you use LaTeX for those pretty pictures?

Ether
10-01-2014, 13:19
have to ask: did you use LaTeX for those pretty pictures?

I use Maxima (http://maxima.sourceforge.net/) to work out the math. Then I capture a PNG screenshot of the area of interest.

For post#1, all the equations were created using the editing available in vBulletin.

Ether
10-01-2014, 14:56
Given the coordinates (0,h) of the launch point and (xp,yp) of the apex, find the equation of the parabola.

Ether
10-01-2014, 15:22
Given the values of a, b, and c in the equation y=ax2+bx+c of a parabola, find the launch speed V and launch angle theta if the launch point is at (0,h).

Aaron.Graeve
10-01-2014, 15:26
I give Ether my highest complements. It takes a certain kind of problem for me to voluntarily work on it for about 4 hours. I worked through the 1st, 5fth, and 6th sub-problems relatively quickly, but the middle three are what are stalling me. I have attempted to solve sub-problems 3 and 4 using both systems of equations and using matricies with Cramer's rule. My system of equations was having sign issues (more than can be expected considering I am comparing my solution to Ether's) and my matricies were not working from my rustiness in this area. I will continue to work tonight and post if anything changes.

Once again, props to you, Ether.

Aaron.Graeve
11-01-2014, 00:22
I just finished up the solutions problems in the original post, using three pages of paper in the process. Ether, your solutions check out fine to me (albeit I have very well could have missed something). I also see what you mean by the solution being messy. I think the derivation was messier. To anyone wondering, I solved it each time with a set of matrices and Cramer's Rule (http://en.wikipedia.org/wiki/Cramer's_rule). Cramer's rule is both really cool and useful. I advise you all to go check it out. I may try my hand at proving the others tomorrow. Ether, as I stated previously, this is a very good challenge. Thank you.

TRWSHSHLX
13-01-2014, 12:41
Just finished up all the problems and everything checks out!

I solved most of them using row reduction then the rest were solved using MATLAB. For anyone that's currently taking a class or looking for a refresher in matrices or 2-d kinematics, try these problems out!