[Course Logo]

Assignment 2: Completing the Parabolic Square

by R. Adam Molnar


Motivation

In high school mathematics, one common task is graphing a parabola, commonly given in the form

y = x^2 + Bx + C

Searching Google on graphing parabolas found about 167,000 results, including Clayton State, and Regents Prep, and Sparknotes, and many many more. Quickly glancing through the results, the top few suggest making a data table, and then connecting points with a smooth curve. While this accomplishes the task, it doesn't give us any feel for shape. Graphing Calculator can easily plot parabolas for us. This Graphing Calculator file produced the following window. It's tough to see similarities when the equations are in this form, and we have to work to find the vertex.

[Parabola Mix Graph]

There's a much better way to show the vertex, but to do so we need a different representation. We can complete the square! Unlike the name of this reference website, the math may not be fun, but it is very useful. To complete the square in the equation above:

y = x^2 + Bx + C = x^2 - 2 ~ \left( - \frac{B}{2} \right) ~ x + C
y = \left[ x^2 - 2 ~ \left( - \frac{B}{2} \right) ~ x + \frac{B^2}{4} \right] + C - \frac{B^2}{4}
y = \left[ x - \frac{B}{2} \right]^2 + \left(C - \frac{B^2}{4} \right)

We have two numbers to manipulate, one inside the square and one outside. It's a little awkward, because inside the square we have a minus and outside we have a plus, but mathematical equations aren't always beautiful and neat. To make things easier, let's call the value inside H and the value outside V. This makes our equation

y = \left[ x - H \right]^2 + V

Graphs for H and V

Let's start by examining one graph in Graphing Calculator, y = \left[ x - 2 \right]^2 + 1.5 . The red dot indicates the vertex, which lies at x = 2 and y = 1.5, right on H and V.

[y = (x-2)^2 + 1.5]

You might be suspicious that I specifically chose 2 and 1.5, so let's look at other values of H and V. In all five cases shown, the vertex lies at the point (H, V).

[Parabolas with Vertices at (H,V)]


If you like, you can experiment with various values of H and V through a GeoGebra Java applet. Click through to the handv.html page. Once the applet loads, you can click on the play button towards the bottom to watch an animation, which then becomes a pause button to stop. Alternatively, you can click on the H and V buttons on the bottom to drag them around the space.

Mathematics of the Vertex

Now that we've seen the relationship graphically, we can find the vertex mathematically. The value of Y sums the constant V and the value of \left[ x - H \right]^2 . We're working with real numbers, so the value of the square is never negative, and will be minimized when \left[ x - H \right] = 0 . This minimum occurs at x = H. At this point, we solve for the minimum value of Y:

y = \left[ H - H \right]^2 + V = 0 + V = V

Thus, our minimum value, the vertex, is at (H, V), as we've seen. If we need the original formula, we can solve B = -2 H and then substitute into V = C - \frac{B^2}{4} to find C = V + H^2 . Looking at both parabolic forms,

y = \left[ x - H \right]^2 + V = x^2 + (- 2 H) x + (V + H^2)


[Course Page] [Home] [Email]