document.write( "Question 749246: Have a project with Angry Birds where you have to find the equation of a parabola for the bird's flight path in various situations. I have to pick a point at the origin and a pint on the x axis for the pig to be placed and find the flight path (equation). How would i do this? I chose for points:\r
\n" );
document.write( "\n" );
document.write( "Bird placed at (0,0)
\n" );
document.write( "Pig placed at (5,0)
\n" );
document.write( "
\n" );
document.write( "I dont understand what to do after this please help. \n" );
document.write( "
Algebra.Com's Answer #732076 by Alan3354(69443)![]() ![]() You can put this solution on YOUR website! Have a project with Angry Birds where you have to find the equation of a parabola for the bird's flight path in various situations. I have to pick a point at the origin and a pint on the x axis for the pig to be placed and find the flight path (equation). How would i do this? I chose for points:\r \n" ); document.write( "\n" ); document.write( "Bird placed at (0,0) \n" ); document.write( "Pig placed at (5,0) \n" ); document.write( " \n" ); document.write( "I dont understand what to do after this please help. \n" ); document.write( "-------------------- \n" ); document.write( "The points are on the x-axis, so the vertex of the parabola is on the line x = 2.5, thru the midpoint. \n" ); document.write( "---- \n" ); document.write( "There are an infinite # of parabolas that will fit, only the y value of the vertex varies. \n" ); document.write( "--- \n" ); document.write( "the simplest method is to start with a parabola with its vertex on the y-axis, then shift it to the right 2.5 units. \n" ); document.write( "y = -5x^2 + will work. \n" ); document.write( "then the shift --> y = -5(x-2.5)^2 + 6.25 \n" ); document.write( "=============== \n" ); document.write( "You can use the 3 points (0,0), (5,0) and (2.5,y) also. \n" ); document.write( "Pick any value for y > 0 and find a parabola that fits. \n" ); document.write( "eg (2.5,5) \n" ); document.write( "--- \n" ); document.write( "y = ax^2 + bx + c \n" ); document.write( "0 = c \n" ); document.write( "---- \n" ); document.write( "5 = a*6.25 + 5*2.5 = 6.25a + 12.5 \n" ); document.write( "a = -7.5/6.25 = -1.2 \n" ); document.write( "b = 6 \n" ); document.write( "--> y = -1.2x^2 + 6x \n" ); document.write( " \n" ); document.write( " |