How do I find the standard equation of a parabola given 3 points?

1 Answer
Jan 21, 2015

A parabola is given by the equation #y=ax^2+bx+c# which means that if the three coefficients #a#, #b# and #c# are known, the parabola is uniquely identified. Each point gives you a condition, and so, given three points you'll end up with three conditions for three variables, and thus there will be one solution, or no solutions at all.

To solve the problem, simply start from the generic formula written above, and substitute the points given. In fact, if a point #(x_0,y_0)# lies on the parabola, it must verify that #y_0=ax_0^2+bx_0+c#. So, with three given points #(x_1,y_1)# #(x_2,y_2)# and #(x_3,y_3)# , you'll have the following system:
#y_1-ax_1^2-bx_1-c=0#
#y_2-ax_2^2-bx_2-c=0#
#y_3-ax_3^2-bx_3-c=0#

Remember that the variables are #a#, #b# and #c#. If you can solve this sistem, you can find the parabola.

Let me give you a simple example: pick the points #(0,0), (1,1)# and #(-1,1)#, belonging to the parabola #y=x^2#.
If #(0,0)# must lie on the parabola, then it must be
#0=a(0^2)+b(0)+c#, and thus #c=0#.
If #(1,1)# must lie on the parabola, then it must be
#1=a(1^2)+b(1)#, and thus #a+b=1#
If #(-1,1)# must lie on the parabola, then it must be
#1=a(-1^2)+b(-1)#, and thus #a-b=1#

So far, we know that #c=0# and that #a+b=1#, and #a-b=1#, and one can easily check that this means #a=1# and #b=0#.

We have thus solved the problem, because the solution #(a,b,c)=(1,0,0)# identifies the parabola #y=x^2#