Quadratic Equations Worksheet: Practice Problems with Step-by-Step Solutions
A quadratic equations worksheet is one of the most effective ways to lock in your understanding of one of algebra's core skills. Whether you're drilling factoring, the quadratic formula, or completing the square, repeated practice with real problems is what separates students who freeze on tests from those who finish with time to spare. This guide works through each solving method from scratch, shows you common traps, and gives you a set of practice problems — with full solutions — that you can work through right now. No matter where you are in your algebra course, these problems are organized so you can start where you need to and build from there.
Contents
- 01What Are Quadratic Equations?
- 02Types of Problems You'll See on a Quadratic Equations Worksheet
- 03Method 1: Solving Quadratic Equations by Factoring
- 04Method 2: Solving Quadratic Equations Using the Quadratic Formula
- 05Method 3: Completing the Square
- 06Quadratic Equations Worksheet: 5 Practice Problems with Full Solutions
- 07Common Mistakes on Quadratic Equations Worksheets
- 08Study Tips to Ace Any Quadratic Equations Worksheet
- 09Frequently Asked Questions
What Are Quadratic Equations?
A quadratic equation is any equation that can be written in the standard form ax² + bx + c = 0, where a, b, and c are real numbers and a ≠ 0. The defining feature is the squared term — that x² is what makes the equation quadratic (from the Latin quadratus, meaning square). Quadratic equations can have two solutions, one repeated solution, or no real solutions, depending on the value of the discriminant (b² − 4ac). You run into quadratic equations constantly in algebra, physics, engineering, and even everyday problems like finding the dimensions of a rectangular garden or calculating the path of a thrown ball. Mastering them is non-negotiable for any math course beyond middle school.
Standard form: ax² + bx + c = 0, where a ≠ 0. Every quadratic equation can be written this way.
Types of Problems You'll See on a Quadratic Equations Worksheet
A well-designed quadratic equations worksheet typically covers four categories of problems, each requiring a slightly different approach. Recognizing which type you're dealing with saves time and prevents you from reaching for the quadratic formula when simple factoring would work in ten seconds. Here's what to watch for and what method works best for each category.
1. Pure quadratics (no x term)
Form: ax² + c = 0 — there is no middle term. Example: x² − 25 = 0. These solve fastest by isolating x² and taking the square root: x² = 25, so x = ±5. Always write both the positive and negative root.
2. Easily factorable quadratics
Form: x² + bx + c = 0 where you can find two integers that multiply to c and add to b. Example: x² + 7x + 12 = 0 factors as (x + 3)(x + 4) = 0. These should be your first check — factoring is the fastest method when it works.
3. Quadratics requiring the formula
Form: ax² + bx + c = 0 where integer factoring fails or a ≠ 1. Example: 3x² − 5x − 2 = 0. Use the quadratic formula: x = (−b ± √(b² − 4ac)) / 2a. This always works, but it's slower, so save it for equations that resist factoring.
4. Completing the square problems
Teachers sometimes ask you to use this method explicitly, or it appears in problems that eventually lead to vertex form. Example: x² + 8x + 7 = 0 becomes (x + 4)² = 9, giving x = −1 or x = −7. Completing the square is also the foundation for deriving the quadratic formula itself.
Method 1: Solving Quadratic Equations by Factoring
Factoring is the quickest path to a solution when it applies. The goal is to rewrite the left side as a product of two binomials, then use the Zero Product Property: if A × B = 0, then A = 0 or B = 0. For this to work, the equation must equal zero on one side — always rearrange before you start. Here's a complete worked example showing every step.
1. Problem: Solve x² + 7x + 12 = 0
The equation is already in standard form with the right side equal to zero. Good — no rearranging needed.
2. Step 1: Find two numbers that multiply to c and add to b
Here c = 12 and b = 7. You need two numbers that multiply to 12 and add to 7. List the factor pairs of 12: (1, 12), (2, 6), (3, 4). Check sums: 1 + 12 = 13, 2 + 6 = 8, 3 + 4 = 7 ✓. The numbers are 3 and 4.
3. Step 2: Write the factored form
Replace x² + 7x + 12 with (x + 3)(x + 4). Your equation is now (x + 3)(x + 4) = 0.
4. Step 3: Apply the Zero Product Property
Set each factor equal to zero: x + 3 = 0 → x = −3, and x + 4 = 0 → x = −4. The solutions are x = −3 and x = −4.
5. Step 4: Check your answers
For x = −3: (−3)² + 7(−3) + 12 = 9 − 21 + 12 = 0 ✓. For x = −4: (−4)² + 7(−4) + 12 = 16 − 28 + 12 = 0 ✓. Both solutions check out.
6. When factoring doesn't work cleanly
If you cannot find integer factor pairs after 30 seconds of searching, the equation likely doesn't factor over integers. Switch to the quadratic formula — it always works. Don't waste test time trying to force factoring on a prime discriminant.
Zero Product Property: if (x + p)(x + q) = 0, then x = −p or x = −q. This is the foundation of the factoring method.
Method 2: Solving Quadratic Equations Using the Quadratic Formula
The quadratic formula works on every quadratic equation, no matter the coefficients. It is derived directly from completing the square on the general form ax² + bx + c = 0, so if you understand that derivation you'll never need to memorize it blindly. For the formula, three values matter: a (the coefficient of x²), b (the coefficient of x), and c (the constant term). Pay careful attention to signs — a negative b or c is a very common source of errors.
1. The quadratic formula
x = (−b ± √(b² − 4ac)) / 2a. The expression under the square root sign, b² − 4ac, is called the discriminant. If it's positive, you get two real solutions. If it's zero, you get one repeated solution. If it's negative, there are no real solutions (you'd get complex numbers).
2. Problem: Solve 3x² − 5x − 2 = 0
Identify: a = 3, b = −5, c = −2. It helps to write these down before plugging in, to avoid sign mistakes mid-calculation.
3. Step 1: Calculate the discriminant
b² − 4ac = (−5)² − 4(3)(−2) = 25 + 24 = 49. The discriminant is 49, which is a perfect square — good news, we'll get clean answers.
4. Step 2: Apply the formula
x = (−(−5) ± √49) / (2 × 3) = (5 ± 7) / 6. Now split into two cases: x = (5 + 7) / 6 = 12/6 = 2, and x = (5 − 7) / 6 = −2/6 = −1/3.
5. Step 3: Verify
For x = 2: 3(4) − 5(2) − 2 = 12 − 10 − 2 = 0 ✓. For x = −1/3: 3(1/9) − 5(−1/3) − 2 = 1/3 + 5/3 − 2 = 6/3 − 2 = 2 − 2 = 0 ✓.
Quadratic formula: x = (−b ± √(b² − 4ac)) / 2a. Memorize this — it solves every quadratic equation, always.
Method 3: Completing the Square
Completing the square is a technique where you rewrite a quadratic as a perfect square trinomial plus a constant. It's less commonly used for pure solving once you know the quadratic formula, but teachers include it on worksheets because it deepens your understanding of how quadratics work — and it's essential for graphing (finding vertex form) and for calculus topics like integrating rational functions. When a = 1, the process is cleanest. Here's a full worked example.
1. Problem: Solve x² + 8x + 7 = 0 by completing the square
The leading coefficient is 1, which is the ideal case. If a ≠ 1, divide the entire equation by a first.
2. Step 1: Move the constant to the right side
x² + 8x = −7. We'll add something to both sides to make the left a perfect square trinomial.
3. Step 2: Add (b/2)² to both sides
Half of 8 is 4. Square it: 4² = 16. Add 16 to both sides: x² + 8x + 16 = −7 + 16 = 9.
4. Step 3: Write the left side as a squared binomial
x² + 8x + 16 = (x + 4)². Your equation is now (x + 4)² = 9.
5. Step 4: Take the square root of both sides
√(x + 4)² = ±√9, so x + 4 = ±3. Split into two cases: x + 4 = 3 → x = −1, and x + 4 = −3 → x = −7.
6. Step 5: Verify
For x = −1: (−1)² + 8(−1) + 7 = 1 − 8 + 7 = 0 ✓. For x = −7: (−7)² + 8(−7) + 7 = 49 − 56 + 7 = 0 ✓.
The completing the square rule: take half the coefficient of x, square it, and add it to both sides. This creates a perfect square trinomial.
Quadratic Equations Worksheet: 5 Practice Problems with Full Solutions
Work through these problems yourself before reading the solutions. They progress from straightforward to genuinely challenging, giving you the same range you'd see on a standard algebra test or homework assignment. Cover the solution, attempt the problem, then check your work against the full solution below.
1. Problem 1 (Beginner): Solve x² − 16 = 0
This is a pure quadratic with no middle term. Isolate x²: x² = 16. Take the square root of both sides: x = ±√16 = ±4. Solutions: x = 4 or x = −4. Check: 4² − 16 = 0 ✓ and (−4)² − 16 = 0 ✓.
2. Problem 2 (Beginner-Intermediate): Solve x² − 3x − 18 = 0
Look for two numbers that multiply to −18 and add to −3: they are −6 and 3 (since −6 × 3 = −18 and −6 + 3 = −3). Factor: (x − 6)(x + 3) = 0. Solutions: x = 6 or x = −3. Check: 6² − 3(6) − 18 = 36 − 18 − 18 = 0 ✓ and (−3)² − 3(−3) − 18 = 9 + 9 − 18 = 0 ✓.
3. Problem 3 (Intermediate): Solve 2x² + 5x − 3 = 0
Since a = 2 ≠ 1, use the quadratic formula. a = 2, b = 5, c = −3. Discriminant: 5² − 4(2)(−3) = 25 + 24 = 49. x = (−5 ± 7) / 4. Solutions: x = (−5 + 7) / 4 = 2/4 = 1/2, and x = (−5 − 7) / 4 = −12/4 = −3. Check x = 1/2: 2(1/4) + 5(1/2) − 3 = 1/2 + 5/2 − 3 = 3 − 3 = 0 ✓.
4. Problem 4 (Intermediate-Hard): Solve x² − 6x + 2 = 0
The discriminant is (−6)² − 4(1)(2) = 36 − 8 = 28. √28 = 2√7, which is not a whole number — factoring won't work. Use the quadratic formula: x = (6 ± 2√7) / 2 = 3 ± √7. Solutions: x = 3 + √7 ≈ 5.646 and x = 3 − √7 ≈ 0.354. You can also get this via completing the square: x² − 6x = −2 → (x − 3)² = 7 → x = 3 ± √7.
5. Problem 5 (Hard): Solve 4x² + 12x + 9 = 0
The discriminant: 12² − 4(4)(9) = 144 − 144 = 0. A discriminant of zero means exactly one repeated solution. x = −12 / (2 × 4) = −12/8 = −3/2. This equation is a perfect square: 4x² + 12x + 9 = (2x + 3)². Setting (2x + 3)² = 0 gives x = −3/2. Check: 4(9/4) + 12(−3/2) + 9 = 9 − 18 + 9 = 0 ✓.
If the discriminant b² − 4ac = 0, the quadratic has exactly one solution (a repeated root). If it's negative, there are no real solutions.
Common Mistakes on Quadratic Equations Worksheets
Most errors on quadratic equations worksheets fall into a small set of predictable patterns. Knowing them in advance means you can actively watch for them — and avoid losing points on problems you actually understand. Here are the mistakes that show up most often, and exactly why they happen.
1. Forgetting the ± in the quadratic formula
The ± symbol means you need to compute two separate values: one using addition and one using subtraction. Writing x = (−b + √discriminant) / 2a and stopping there gives you only half the answer. Always split into x₁ and x₂ explicitly.
2. Not setting the equation equal to zero first
The factoring method and the quadratic formula both require the equation to be in the form ax² + bx + c = 0. If you see x² + 3x = 10 and immediately try to factor the left side, you'll get the wrong answer. Move everything to one side first: x² + 3x − 10 = 0, then factor as (x + 5)(x − 2) = 0.
3. Sign errors when identifying a, b, and c
For 3x² − 5x − 2 = 0, students often write b = 5 instead of b = −5. The sign is part of the coefficient. Write a = 3, b = −5, c = −2 before plugging into the formula. This single habit eliminates most quadratic formula errors.
4. Computing (−b)² incorrectly
In the discriminant, b is squared, so the sign of b doesn't matter: (−5)² = 25, not −25. But then −4ac can be positive or negative depending on the sign of c. Calculate b² and 4ac separately, then combine with the correct sign.
5. Skipping the verification step
Substituting your answer back into the original equation takes 20 seconds and catches sign errors immediately. If you get a non-zero result when checking, something went wrong — recheck your factoring or formula calculation. This step is especially important when answers are fractions or surds.
Study Tips to Ace Any Quadratic Equations Worksheet
Beyond knowing the methods, a few strategic habits separate students who consistently get these right from those who make unpredictable errors. These tips apply whether you're preparing for a test, doing homework, or working through a quadratic equations worksheet for the first time.
1. Choose your method based on the discriminant
Before committing to a method, check whether b² − 4ac is a perfect square. If yes, factoring will likely work cleanly (or the quadratic formula gives nice fractions). If no, go straight to the quadratic formula or completing the square. This 5-second check saves significant time.
2. Master factoring trinomials when a = 1 first
The fastest path through most quadratic equations worksheets is recognizing factorable trinomials quickly. Drill the factor-pair search: for x² + bx + c, find two numbers that multiply to c and add to b. With practice this becomes nearly automatic for common values.
3. Write the quadratic formula from memory at the top of every worksheet
Before starting any problem set, write x = (−b ± √(b² − 4ac)) / 2a at the top of your paper. This takes 10 seconds and gives you a reliable reference so you don't have to reconstruct it mid-problem.
4. Always simplify √ results
If your discriminant is 48, don't leave it as √48 — simplify to 4√3. Answers with unsimplified radicals are technically wrong on most graded worksheets. Factor out perfect squares: √48 = √(16 × 3) = 4√3.
5. Group quadratic equations worksheet problems by method
When reviewing, sort your practice problems into three piles: factoring, quadratic formula, completing the square. Drilling one method at a time builds stronger pattern recognition than jumping between methods randomly. Once each method is solid, mix them to simulate test conditions.
When in doubt, use the quadratic formula. It works on every quadratic equation — there are no exceptions.
Frequently Asked Questions
These are the questions students most commonly ask when working through a quadratic equations worksheet for the first time or revisiting the topic before a test.
1. When should I use factoring vs. the quadratic formula?
Try factoring first when the coefficients are small integers and a = 1. If you can't spot the factor pair in about 30 seconds, switch to the quadratic formula. For problems where a ≠ 1 (like 3x² + 7x − 6 = 0), the quadratic formula is usually faster unless the trinomial factors cleanly with trial and error.
2. What does a negative discriminant mean?
If b² − 4ac < 0, there are no real solutions. The quadratic's parabola doesn't intersect the x-axis. In higher math courses you'd write the solutions as complex numbers using the imaginary unit i (where i = √−1), but in standard algebra courses, you simply write 'no real solutions.'
3. Do I always need to write both solutions?
For most quadratic equations, yes — both solutions are valid unless a constraint in the problem rules one out (for example, negative lengths make no sense in a geometry problem). On a worksheet with no context, always write both solutions. A repeated root (discriminant = 0) counts as one solution written once.
4. Can every quadratic be factored over whole numbers?
No. Only quadratics with a perfect-square discriminant factor cleanly over the integers. For example, x² − 6x + 2 = 0 has discriminant 28, which is not a perfect square, so it doesn't factor over integers. The solutions 3 ± √7 are irrational. The quadratic formula always works regardless of the discriminant.
5. Why do some worksheets ask me to complete the square when I could just use the formula?
Completing the square builds the algebraic reasoning behind the quadratic formula, which is itself derived by completing the square on ax² + bx + c = 0. Teachers also use it to bridge to vertex form y = a(x − h)² + k, which is essential for graphing parabolas. It's a method worth knowing even if the formula is faster.
Related Articles
How to Factor a Quadratic Equation
A detailed guide to all major factoring techniques for quadratic equations, including GCF, trinomial factoring, and difference of squares.
Walk Me Through How to Use the Quadratic Equation
Step-by-step walkthrough of the quadratic formula with worked examples and tips for getting the right answer every time.
Quadratic Equation Problems
More practice problems covering a wide range of quadratic equation types, from basic to exam-level difficulty.
Related Math Solvers
Step-by-Step Solutions
Get detailed explanations for every step, not just the final answer.
Practice Mode
Generate similar problems to practice and build confidence.
AI Math Tutor
Ask follow-up questions and get personalized explanations 24/7.
