How to put a quadratic into vertex form?
Understand the Problem
The question is asking how to convert a quadratic equation from standard form into vertex form. The vertex form of a quadratic is typically expressed as y = a(x - h)² + k, where (h, k) is the vertex of the parabola. To solve this, we can use the method of completing the square.
Answer
$y = 2(x + 2)^2 - 5$
Answer for screen readers
The vertex form of the quadratic equation $y = 2x^2 + 8x + 3$ is $y = 2(x + 2)^2 - 5$.
Steps to Solve
- Identify the standard form of the equation
First, make sure your quadratic equation is in standard form, which is $y = ax^2 + bx + c$. For example, let’s take the equation $y = 2x^2 + 8x + 3$.
- Factor out the coefficient of $x^2$
If $a \neq 1$, factor out the coefficient $a$ from the first two terms of the equation.
For our example: $$ y = 2(x^2 + 4x) + 3 $$
- Complete the square
To complete the square, take half of the coefficient of $x$ (which is 4 here), square it, and add it inside the parentheses. This is $\left(\frac{4}{2}\right)^2 = 4$. But remember, since we factored out 2 earlier, we also need to subtract $2 \cdot 4$ outside to balance the equation.
So we add 4 inside the parentheses and subtract $8$ outside:
$$ y = 2(x^2 + 4x + 4 - 4) + 3 $$
- Rewrite the expression
Now rewrite the expression inside the parentheses as a square and simplify:
$$ y = 2((x + 2)^2 - 4) + 3 $$ $$ y = 2(x + 2)^2 - 8 + 3 $$ $$ y = 2(x + 2)^2 - 5 $$
- Identify the vertex form
Now the equation is in vertex form: $y = a(x - h)^2 + k$, where $(h, k)$ is the vertex. For our example, this is:
$$ y = 2(x - (-2))^2 - 5 $$
So the vertex is $(-2, -5)$.
The vertex form of the quadratic equation $y = 2x^2 + 8x + 3$ is $y = 2(x + 2)^2 - 5$.
More Information
Converting a quadratic from standard form to vertex form can be useful for graphing the function, as it directly shows the vertex of the parabola, which is the highest or lowest point.
Tips
- Forgetting to balance the equation after completing the square.
- Not factoring out the coefficient of $x^2$ before completing the square, which can lead to incorrect results.
- Miscalculating the vertex after converting to vertex form.