Quadratic Equations: From Zero to Hero
📑 What You'll Find in This Article
- What Is a Quadratic Equation?
- Standard Form: ax² + bx + c = 0
- Solving by Factoring
- The Quadratic Formula
- Completing the Square
- The Discriminant: How Many Solutions?
- Graphing Quadratics: The Parabola
- Vertex Form: y = a(x − h)² + k
- Quadratic Word Problems
- Solved Practice Problems
- 6 Common Quadratic Mistakes
- Which Method Should You Use?
If linear equations are the straight roads of algebra, quadratic equations are the arches and bridges. They curve. They have peaks and valleys. They can cross the x-axis twice, once, or not at all. And they show up everywhere — from the path of a thrown ball to the shape of a satellite dish to the profit curve of a business.
A quadratic equation is any equation where the highest power of the variable is 2. That single exponent change — from x to x² — transforms a simple line into a parabola and opens up an entirely new world of math. This article walks you through every method for solving quadratics, explains when to use each one, and gives you enough solved problems to feel confident on any test.
What Is a Quadratic Equation?
A quadratic equation is an equation of the form ax² + bx + c = 0, where a, b, and c are real numbers and a ≠ 0. The "a ≠ 0" part is critical — if a were zero, the x² term would disappear and you would be left with a linear equation, not a quadratic one.
The word "quadratic" comes from the Latin quadratus, meaning "square." It refers to the x² term, not to four-sided shapes. Every quadratic equation has a squared variable as its highest-degree term.
Here are some examples of quadratic equations:
- x² − 5x + 6 = 0 — a = 1, b = −5, c = 6
- 3x² + 12x = 0 — a = 3, b = 12, c = 0
- 2x² − 8 = 0 — a = 2, b = 0, c = −8
- −x² + 4x − 4 = 0 — a = −1, b = 4, c = −4
And here are some equations that are not quadratic:
- 5x + 3 = 0 — no x² term (this is linear)
- x³ − x = 0 — highest power is 3 (this is cubic)
- √x + 2 = 7 — involves a square root, not a square
Standard Form: ax² + bx + c = 0
Before you can solve a quadratic equation, you need to write it in standard form: all terms on one side, zero on the other, with terms arranged in descending order of degree.
Sometimes an equation does not look quadratic at first glance, but a little rearranging reveals that it is. For example, x(x + 5) = 14 becomes x² + 5x − 14 = 0 after distributing and moving 14 to the left side. Similarly, (2x − 1)² = 9 can be expanded to 4x² − 4x + 1 = 9, then rearranged to 4x² − 4x − 8 = 0.
Getting comfortable with rearranging equations into standard form is half the battle. Once you have ax² + bx + c = 0, you can choose from three main solving methods.
Solving by Factoring
Factoring is the fastest method — when it works. The idea is simple: rewrite the quadratic as a product of two binomials, then use the zero product property to find the solutions.
Factoring x² + bx + c (Leading Coefficient = 1)
When a = 1, you need two numbers that multiply to c and add to b. If those two numbers are p and q, then x² + bx + c = (x + p)(x + q).
✏️ Example: Solve x² − 5x + 6 = 0
Factoring ax² + bx + c (Leading Coefficient ≠ 1): The AC Method
When a ≠ 1, factoring gets trickier. The AC method works like this: multiply a × c, find two numbers that multiply to ac and add to b, then rewrite the middle term using those two numbers and factor by grouping.
✏️ Example: Solve 2x² + 7x + 3 = 0
Special Factoring Patterns
Some quadratics follow patterns you should recognize instantly:
- Difference of squares: a² − b² = (a + b)(a − b). Example: x² − 16 = (x + 4)(x − 4)
- Perfect square trinomial: a² + 2ab + b² = (a + b)². Example: x² + 6x + 9 = (x + 3)²
- GCF factoring: Always check for a greatest common factor first. Example: 3x² + 12x = 3x(x + 4)
💡 When Does Factoring Fail?
Not every quadratic factors neatly with integers. For example, x² + 3x + 1 = 0 does not produce nice integer or simple fraction roots. When you cannot find integer pairs that work, move on to the quadratic formula. Do not waste time guessing — if it does not click within 30 seconds, switch methods.
The Quadratic Formula
The quadratic formula solves every quadratic equation, whether or not it factors. It is the universal tool — slower than factoring for easy problems, but it never fails.
The ± symbol means you get two answers: one using + and one using −. These correspond to the two places where the parabola crosses (or touches) the x-axis.
✏️ Example: Solve 3x² − 2x − 5 = 0
✏️ Example: Solve x² + 3x + 1 = 0 (non-factorable)
⚠️ Common Quadratic Formula Mistakes
The two biggest errors: (1) forgetting that the entire numerator is divided by 2a, not just the square root — use parentheses around −b ± √(b² − 4ac) and divide the whole thing by 2a, and (2) mishandling the negative sign on b — if b is already negative, then −b becomes positive. Write it out carefully every time.
Completing the Square
Completing the square is a method that transforms ax² + bx + c = 0 into a perfect square trinomial, making it easy to solve by taking a square root. It is also how the quadratic formula itself is derived, and it is essential for converting quadratics to vertex form.
Step-by-Step Process
For the equation x² + bx + c = 0 (where a = 1):
- Step 1: Move the constant to the other side: x² + bx = −c
- Step 2: Take half of b, square it: (b/2)²
- Step 3: Add that value to both sides: x² + bx + (b/2)² = −c + (b/2)²
- Step 4: Factor the left side as a perfect square: (x + b/2)² = −c + (b/2)²
- Step 5: Take the square root of both sides and solve for x.
✏️ Example: Solve x² + 6x − 7 = 0 by Completing the Square
When a ≠ 1, divide the entire equation by a first, then follow the same steps. For example, to complete the square on 2x² + 8x − 10 = 0, first divide everything by 2 to get x² + 4x − 5 = 0, then proceed as above.
💡 The Geometric Meaning
The name "completing the square" is literal. Imagine you have a rectangle with area x² + 6x. You can split it into a square of x² and a rectangle of 6x. Cut the rectangle in half (two strips of 3x) and rearrange them around the square. You are left with an L-shape that is almost a complete square — you just need a small 3 × 3 = 9 corner piece to "complete" it. That is why you add (b/2)².
The Discriminant: How Many Solutions?
The expression under the square root in the quadratic formula — b² − 4ac — is called the discriminant. It tells you exactly how many real solutions a quadratic equation has before you even solve it.
| Discriminant Value | Number of Solutions | What It Means Graphically |
|---|---|---|
| D > 0 | Two distinct real solutions | Parabola crosses x-axis at two points |
| D = 0 | One repeated real solution | Parabola just touches x-axis (vertex on axis) |
| D < 0 | No real solutions (two complex) | Parabola floats above or below x-axis entirely |
✏️ Example: Determine the number of solutions
✏️ Example: Why does x² + 1 = 0 have no real solutions?
If D is a perfect square (like 0, 1, 4, 9, 16, ...), the solutions will be rational numbers and the equation is factorable over the integers. If D is positive but not a perfect square, the solutions involve irrational square roots.
Graphing Quadratics: The Parabola
Every quadratic equation y = ax² + bx + c produces a parabola — a symmetric U-shaped curve. Understanding the graph helps you visualize the solutions and make sense of the algebra.
Key Features of a Parabola
- Direction: If a > 0, the parabola opens upward (smiling). If a < 0, it opens downward (frowning).
- Vertex: The highest or lowest point of the parabola. Located at x = −b / (2a). Plug this x-value back into the equation to find the y-coordinate.
- Axis of symmetry: The vertical line x = −b / (2a) that divides the parabola into two mirror-image halves.
- Y-intercept: The point where the parabola crosses the y-axis. Always at (0, c) — just set x = 0.
- X-intercepts (roots/zeros): The points where the parabola crosses the x-axis. These are the solutions to ax² + bx + c = 0.
✏️ Example: Graph y = x² − 4x + 3
How the Value of "a" Affects the Parabola
The coefficient a controls both the direction and the width of the parabola. When |a| > 1, the parabola is narrower than y = x² (stretched vertically). When 0 < |a| < 1, the parabola is wider (compressed vertically). For example, y = 5x² is a very narrow, steep parabola, while y = 0.2x² is wide and flat. Changing the sign of a flips the parabola upside down.
Vertex Form: y = a(x − h)² + k
Vertex form makes it easy to read the vertex directly from the equation. The vertex is at (h, k), and a still controls the direction and width.
To convert from standard form to vertex form, use completing the square. To convert from vertex form to standard form, expand the squared binomial and simplify.
✏️ Example: Convert y = x² − 6x + 11 to vertex form
Quadratic Word Problems
Quadratic equations model countless real-world situations. The key is recognizing when a problem involves something squared — area, projectile motion, revenue, or any relationship where one quantity depends on the square of another.
Projectile Motion
The height of a projectile (ball, arrow, rocket) follows a quadratic path. The standard physics formula is h(t) = −16t² + v₀t + h₀ (in feet, with t in seconds), where v₀ is the initial velocity and h₀ is the starting height. The −16 comes from gravity (half of 32 ft/s²).
✏️ Example: Projectile Problem
Area Problems
✏️ Example: Garden Fencing
Revenue and Profit
✏️ Example: Pricing for Maximum Revenue
Want to practice solving quadratic equations with instant feedback? Our interactive algebra engine generates unlimited problems — factoring, quadratic formula, word problems — all with step-by-step solutions.
Practice Quadratics Now →Solved Practice Problems
✏️ Problem 1: Solve by Factoring
✏️ Problem 2: Solve Using the Quadratic Formula
✏️ Problem 3: Solve by Completing the Square
✏️ Problem 4: Find the Vertex
✏️ Problem 5: Discriminant Check
✏️ Problem 6: Number Problem
6 Common Quadratic Mistakes
1. Forgetting to set the equation equal to zero before factoring. The zero product property only works when the product equals zero. If you have x² − 5x = 6 and you factor the left side without moving the 6, you are factoring incorrectly. Always rearrange to standard form first.
2. Losing a solution when dividing by x. If you have x² = 5x, do not divide both sides by x — you will lose the solution x = 0. Instead, move everything to one side: x² − 5x = 0, then factor: x(x − 5) = 0. Now you see both solutions: x = 0 and x = 5.
3. Sign errors in the quadratic formula. When b is negative, −b becomes positive. When c is negative, −4ac becomes positive (since you are multiplying two negatives). Write every step carefully. The most common spot for errors is inside the square root: b² − 4ac requires you to square b first (always positive), then subtract 4ac (which could be positive or negative depending on the signs of a and c).
4. Forgetting the ± when taking a square root. If (x − 3)² = 25, then x − 3 = ±5, giving x = 8 or x = −2. If you only take the positive root, you miss half the solutions. Every square root in equation-solving produces two cases.
5. Confusing the vertex with the solutions. The vertex (h, k) is the highest or lowest point of the parabola. The solutions (roots, zeros, x-intercepts) are where the parabola crosses the x-axis. They are different things. A parabola can have a vertex at (2, −3) and solutions at x = 0.27 and x = 3.73.
6. Not checking answers in the original equation. Especially with word problems or equations you rearranged significantly, plug your answers back in to verify. This catches arithmetic mistakes and identifies extraneous solutions — answers that satisfy the rearranged equation but not the original one.
Which Method Should You Use?
You have three methods. Here is how to choose:
| Method | Best When | Pros | Cons |
|---|---|---|---|
| Factoring | Coefficients are small integers; you can spot the factors quickly | Fastest method; no calculator needed | Does not work for all quadratics; requires trial-and-error |
| Quadratic Formula | Factoring fails; coefficients are messy; you need exact irrational answers | Always works; systematic; no guessing | More arithmetic; easy to make sign errors |
| Completing the Square | You need vertex form; deriving the quadratic formula; solving circle equations | Gives vertex form directly; builds deep understanding | Many steps; easy to lose track of signs |
In practice, most students try factoring first (30 seconds maximum), and if it does not work, they switch to the quadratic formula. Completing the square is used less often for solving and more often for converting to vertex form or working with circles in geometry.
Wrapping Up
Quadratic equations are the gateway to higher algebra. Once you are comfortable with them, you can tackle polynomial equations, rational expressions, conic sections, and eventually calculus. The core ideas are straightforward: standard form gives you a, b, and c; factoring is fast when it works; the quadratic formula is the reliable backup; completing the square reveals the vertex; and the discriminant tells you what to expect before you even start solving.
The best way to get good at quadratics is to practice with all three methods. Factor when you can, use the formula when you cannot, and understand completing the square deeply enough that you could derive the formula yourself. That level of understanding is what separates students who struggle from students who see quadratics as a set of tools they can wield with confidence.
If you found this article helpful, explore our guides on slope and rate of change, exponent rules, and fraction operations to strengthen the building blocks you need for every quadratic problem.