0

I have the first point is (0, -100) and the second point is (7500, -250), and the maximum point is at (x, 210).

Is it possible to find X or the equation of the parabola using this information alone?

If so how?

myusuf3
  • 173

2 Answers2

4

Assume you have $y=ax^2 + bx + c$. The maximum is achieved at $x = -\frac{b}{2a}$.

The values you have give you the value of $c$ ($-100$), and a relation between $a$ and $b$ obtained by plugging in $(7500,-250)$. You also know that the maximum is achieved at $-\frac{b}{2a}$, so plugging that will give you another relation between $a$ and $b$. Putting them together will give you a quadratic equation that $b$ must satisfied.

Arturo Magidin
  • 398,050
1

Three points determine a parabola, since you have three constants to account for in $y=ax^2+bx+c$ . Construct the appropriate system of linear equations and you're golden.

Otherwise, if you're too cool for solving linear equations, there is a determinant expression for the parabola passing through three points $(x_1,y_1)$, $(x_2,y_2)$, and $(x_3,y_3)$:

$$\begin{vmatrix}x^2&x&y&1\\x_1^2&x_1&y_1&1\\x_2^2&x_2&y_2&1\\x_3^2&x_3&y_3&1\end{vmatrix}=0$$

whose verification is left as an exercise.

  • I have updated the question. Could you update your answer to reflect it. – myusuf3 Mar 15 '11 at 04:17
  • $(7500, -250)$ ain't an x-intercept, yo. ;) The quadratic formula is excellent for figuring where a parabola crosses the horizontal axis, tho. –  Mar 15 '11 at 04:20
  • I accidentally edited the wrong question. If you could answer it as written now. It would be appreciated. – myusuf3 Mar 15 '11 at 04:24