Parabola Equation

Parabola Equation A hands-on approach

Back to the main page

Problem Statement

Let's say you are given a task of finding the equation of a parabola passing through the tree given points (-2, 10), (1, -11) and (3, -5) in Cartesian coordinates, where the first number of the three coordinate-pairs is the x-coordinate. The second number of the three coordinates-pairs is the y-coordinate.

The Equation of a Parabola

All equations describing a parabola can be written in the following form: ( b x means b times x) y = a x 2 + b x + c

Solving the System of Equations

Now substitute the three given (x, y)-coordinates in the general form of a parabolic equation (above). Thus creating a system of three equations. The point (-2, 10) yields: (I will call this our first equation below) 10 = a (-2) 2 + b (-2) + c 10 = 4 a - 2 b + c

The point (1, -11) yields: (I will call this our second equation below) -11 = a (1) 2 + b (1) + c -11 = a + b + c

The point (3, -5) yields: (I will call this our third equation below) -5 = a (3) 2 + b (3) + c -5 = 9 a + 3 b + c

If we have three unknown variables and three equations, we can solve the problem. The second equation tells us that: -11 = a + b + c

In other words: c = - a - b - 11

The first equation tells us that: 10 = 4 a - 2 b + c

Now substitute c in the equation above for ( - a - b - 11 )

This yields: 10 = 4 a - 2 b + ( - a - b - 11 ) Isolating b yields: 21 = 3 a - 3 b b = 3 a - 21 3

The third equation tells us that: -5 = 9 a + 3 b + c

Now substitute b and c for the values we have found via isolation above. Equation number three becomes:

-5 = 9 a + 3 ( 3 a - 21 3 ) + ( - a - b - 11 ) c contained a b . Replacing it yields: (now we only have one unknown, which is a ) -5 = 9 a + 3 ( 3 a - 21 3 ) + ( - a - ( 3 a - 21 3 ) - 11 ) Let's try to isolate a . -5 = 10 a - 21 + 7 - 11 -5 = 10 a - 25 -1 = 2 a - 5 a = 2 Now we use our result for a in order to find a numerical value for the coefficient b . Remember that b was: b = 3 a - 21 3 b = 3 (2) - 21 3 b = - 5 Now we use our result for b in order to find a numerical value for the coefficient c . Remember that c was: c = - a - b - 11 c = - (2) - ( - 5) - 11 c = - 8

And our final version of the equation for the parabola passing through the three given points (-2, 10), (1, -11) and (3, -5) in Cartesian coordinates becomes: y = 2 x 2 - 5 x - 8