Converting a quadratic equation from its standard form to its vertex form is primarily achieved through a powerful algebraic technique known as completing the square. This method systematically transforms an equation of the form y = ax² + bx + c
into y = a(x - h)² + k
, where (h, k)
represents the vertex of the parabola.
Understanding the Forms
Before diving into the conversion process, it's essential to understand the two forms:
- Standard Form:
y = ax² + bx + c
- This form is useful for identifying the y-intercept (c) and the general shape of the parabola (determined by
a
).
- This form is useful for identifying the y-intercept (c) and the general shape of the parabola (determined by
- Vertex Form:
y = a(x - h)² + k
- This form directly reveals the parabola's vertex at
(h, k)
and the axis of symmetryx = h
. The value ofa
indicates the direction of opening and the vertical stretch/compression.
- This form directly reveals the parabola's vertex at
Feature | Standard Form (y = ax² + bx + c ) |
Vertex Form (y = a(x - h)² + k ) |
---|---|---|
Vertex | Derived from -b/(2a) |
(h, k) |
Axis of Symmetry | x = -b/(2a) |
x = h |
Y-intercept | c |
a(0 - h)² + k |
Ease of Graphing | Requires calculation of vertex | Direct from h, k |
Step-by-Step Conversion Using Completing the Square
To convert y = ax² + bx + c
to y = a(x - h)² + k
using completing the square, follow these steps:
Step 1: Isolate the x
Terms
Begin by grouping the ax²
and bx
terms together. If there's a constant c
, move it to the side or keep it separate for now.
- Original:
y = ax² + bx + c
- Grouped:
y = (ax² + bx) + c
Step 2: Factor Out a
If a
is not 1, factor it out from the grouped x
terms. This is crucial for completing the square within the parentheses.
- Factored:
y = a(x² + (b/a)x) + c
Step 3: Complete the Square
Inside the parentheses, take half of the coefficient of the x
term (b/a
), square it, and add it.
Let the coefficient of x
be B = b/a
. The value to add is (B/2)²
.
- Calculate:
( (b/a) / 2 )² = (b / (2a))²
- Add inside parenthesis:
y = a(x² + (b/a)x + (b / (2a))²) + c
Step 4: Balance the Equation
When you added (b / (2a))²
inside the parentheses, you actually added a * (b / (2a))²
to the right side of the equation (because of the a
factored out in Step 2). To keep the equation balanced, you must subtract this exact value from the right side.
- Value added:
a * (b / (2a))²
- Balanced:
y = a(x² + (b/a)x + (b / (2a))²) + c - a * (b / (2a))²
Step 5: Rewrite as a Squared Term and Simplify
The expression inside the parentheses is now a perfect square trinomial. Rewrite it as (x + B/2)²
. Simplify the constant terms outside the parentheses.
- Perfect Square:
(x + b / (2a))²
- Vertex Form:
y = a(x + b / (2a))² + [c - a * (b / (2a))²]
Now, compare this with y = a(x - h)² + k
. You'll find:
h = -b / (2a)
k = c - a * (b / (2a))²
(which simplifies tof(-b/2a)
)
Practical Example
Let's convert the quadratic equation y = 2x² + 8x + 3
from standard form to vertex form.
-
Isolate
x
terms:
y = (2x² + 8x) + 3
-
Factor out
a
(which is 2):
y = 2(x² + 4x) + 3
-
Complete the square:
- Coefficient of
x
inside is4
. - Half of
4
is2
. - Square of
2
is4
. - Add
4
inside the parentheses:
y = 2(x² + 4x + 4) + 3
- Coefficient of
-
Balance the equation:
- We added
4
inside the parentheses, but it's being multiplied by2
outside. So, we effectively added2 * 4 = 8
to the right side. - Subtract
8
to balance:
y = 2(x² + 4x + 4) + 3 - 8
- We added
-
Rewrite as a squared term and simplify:
- The trinomial
(x² + 4x + 4)
is(x + 2)²
. - Simplify the constants:
3 - 8 = -5
. - Vertex Form:
y = 2(x + 2)² - 5
- The trinomial
From this vertex form, we can see that the vertex of the parabola is (-2, -5)
.
This methodical approach ensures an accurate conversion, providing direct insights into the parabola's key features.