Skip to main content
algebraguidepractice

Problem Involving Quadratic Equations: Methods, Examples & Practice

·14 min read·Solvify Team

Every problem involving quadratic equation work asks you to find the value — or values — of a variable where an equation of the form ax² + bx + c = 0 holds true, and these problems appear throughout algebra, standardized tests, and real-world applications from projectile motion to area calculations. The defining feature is a squared term: whenever the highest power of the unknown is 2, you are dealing with a quadratic equation. This guide covers all three standard solution methods with fully worked examples, common student errors, and practice problems at increasing levels of difficulty so you can build confidence fast.

What Is a Problem Involving Quadratic Equation Work?

A quadratic equation is a polynomial equation of degree 2. Its standard form is ax² + bx + c = 0, where a, b, and c are real numbers and a ≠ 0. The word quadratic comes from the Latin quadratus, meaning square, which reflects the x² term that distinguishes these equations from linear ones. Any problem involving quadratic equation solving typically requires you to find one or two values of x — called roots or solutions — that make the equation equal zero. These problems are everywhere: calculating when a ball returns to the ground after being thrown upward, finding the dimensions of a rectangle with a known area, or determining the break-even point in a simple profit model. Understanding the structure of a quadratic before choosing a solution method is essential. The coefficient a controls the direction and width of the parabola when the equation is graphed. The coefficient b shifts the vertex horizontally. The constant c tells you where the parabola intersects the y-axis. Every quadratic equation has exactly two solutions when you count complex numbers — those solutions can be two distinct real numbers, one repeated real number, or two complex conjugates with no real component.

Standard form: ax² + bx + c = 0, where a ≠ 0. Every quadratic has exactly two solutions — real or complex.

Three Methods to Solve Quadratic Equation Problems

Three main methods apply to any quadratic equation problem: factoring, the quadratic formula, and completing the square. Choosing the right one depends on the coefficients involved. Factoring is the fastest approach when the quadratic breaks into two neat integer factors, but it fails whenever the roots are irrational or fractional. The quadratic formula x = (−b ± √(b² − 4ac)) ÷ (2a) works on every single quadratic equation without exception, making it the most reliable universal tool. Completing the square is the method behind the derivation of the quadratic formula itself, and it is especially useful when you need vertex form y = a(x − h)² + k for graphing or optimization. Knowing all three methods gives you flexibility and a natural way to cross-check your work: solve with factoring, then verify with the quadratic formula. Before applying any method, follow these three setup steps.

1. Write the equation in standard form

All terms must be on one side with zero on the other. If the problem gives you x² = 5x − 6, rewrite it as x² − 5x + 6 = 0 before doing anything else. Skipping this step is one of the leading causes of wrong answers.

2. Identify a, b, and c precisely

In x² − 5x + 6 = 0, read the coefficients as a = 1, b = −5, c = 6. Pay attention to signs: b and c are very often negative. Writing them down explicitly before substituting them anywhere prevents arithmetic mistakes.

3. Choose a solution method

If you can quickly spot two integers whose product equals c and whose sum equals b, use factoring. If the coefficients are large, fractional, or you cannot find integer factors within 60 seconds, go straight to the quadratic formula. If the problem asks for vertex form, use completing the square.

When in doubt, use the quadratic formula — it works on every quadratic equation, every time, without exception.

Solving Quadratic Problems by Factoring

Factoring reverses the multiplication that produced the quadratic expression. For a monic quadratic — one where a = 1 — such as x² + 7x + 12 = 0, you need two numbers that multiply to the constant term (12) and add to the middle coefficient (7). Those numbers are 3 and 4, because 3 × 4 = 12 and 3 + 4 = 7. The factored form is (x + 3)(x + 4) = 0. By the zero-product property — which states that if a product of factors equals zero, then at least one factor must be zero — you set each factor equal to zero: x + 3 = 0 gives x = −3, and x + 4 = 0 gives x = −4. For non-monic quadratics where a ≠ 1, such as 2x² + 5x − 3 = 0, the process is slightly different: you look for factors of the product a × c = −6 that add to b = 5, which are 6 and −1. You then split the middle term: 2x² + 6x − x − 3 = 0, and factor by grouping: 2x(x + 3) − 1(x + 3) = 0, giving (2x − 1)(x + 3) = 0, so x = 1/2 or x = −3.

1. Step 1: Confirm standard form

Example: Solve x² + 7x + 12 = 0. The equation is already in standard form. Read off a = 1, b = 7, c = 12.

2. Step 2: List factor pairs of c

Factors of 12: (1, 12), (2, 6), (3, 4), (−1, −12), (−2, −6), (−3, −4). You need the pair whose sum equals b = 7.

3. Step 3: Identify the correct pair

3 + 4 = 7 ✓ and 3 × 4 = 12 ✓. The correct pair is 3 and 4.

4. Step 4: Write factored form

(x + 3)(x + 4) = 0. Each factor corresponds to one solution.

5. Step 5: Apply the zero-product property

x + 3 = 0 → x = −3. x + 4 = 0 → x = −4. Both are valid solutions.

6. Step 6: Verify both answers

For x = −3: (−3)² + 7(−3) + 12 = 9 − 21 + 12 = 0 ✓. For x = −4: (−4)² + 7(−4) + 12 = 16 − 28 + 12 = 0 ✓.

Factoring shortcut for monic quadratics: find two numbers with product = c and sum = b.

Using the Quadratic Formula on Real Problems

The quadratic formula x = (−b ± √(b² − 4ac)) ÷ (2a) solves every problem involving a quadratic equation, including those whose roots are irrational or fractional. The expression b² − 4ac is called the discriminant (often written Δ). Calculating the discriminant first is good practice because it tells you what kind of answers to expect before you do the full computation. If Δ > 0, you will get two distinct real solutions. If Δ = 0, the equation has exactly one repeated real solution. If Δ < 0, the solutions are complex and the parabola never crosses the x-axis. The two worked examples below show the formula applied to a straightforward case and to a repeated-root case.

1. Worked Example 1: Solve 2x² − 4x − 6 = 0

Identify coefficients: a = 2, b = −4, c = −6. Compute the discriminant: b² − 4ac = (−4)² − 4(2)(−6) = 16 + 48 = 64. Since 64 > 0, expect two distinct real solutions. Apply the formula: x = (−(−4) ± √64) ÷ (2 × 2) = (4 ± 8) ÷ 4. Solution 1: x₁ = (4 + 8) ÷ 4 = 12 ÷ 4 = 3. Solution 2: x₂ = (4 − 8) ÷ 4 = −4 ÷ 4 = −1. Verify x = 3: 2(9) − 4(3) − 6 = 18 − 12 − 6 = 0 ✓. Verify x = −1: 2(1) − 4(−1) − 6 = 2 + 4 − 6 = 0 ✓.

2. Worked Example 2: Solve x² + 4x + 4 = 0

Identify: a = 1, b = 4, c = 4. Discriminant: 16 − 16 = 0. Since Δ = 0, expect one repeated solution. Formula: x = −4 ÷ (2 × 1) = −2. Verify: (−2)² + 4(−2) + 4 = 4 − 8 + 4 = 0 ✓. Note that this quadratic factors as (x + 2)² = 0, confirming x = −2 is a double root.

3. Worked Example 3: Solve x² + x + 1 = 0 (complex roots)

a = 1, b = 1, c = 1. Discriminant: 1 − 4 = −3. Since Δ < 0, there are no real solutions. The solutions are complex: x = (−1 ± √(−3)) ÷ 2 = (−1 ± i√3) ÷ 2. In a typical algebra course, you would state 'no real solutions' and leave it there unless the course covers complex numbers.

4. How to remember the formula

Many students memorize the quadratic formula as a song set to 'Pop Goes the Weasel': x equals negative b, plus or minus the square root of b squared minus four a c, all over two a. Writing it on every homework paper until it becomes automatic is equally effective.

Discriminant rule: Δ > 0 → two real solutions; Δ = 0 → one repeated solution; Δ < 0 → two complex solutions (no real roots).

Completing the Square — When and How

Completing the square transforms a quadratic into the form (x + h)² = k, from which you can solve directly by taking the square root of both sides. It is the derivation method for the quadratic formula and is used in graphing because it produces vertex form y = a(x − h)² + k directly. While the quadratic formula is faster for purely numerical problems, completing the square builds a deeper understanding of why the formula works and is required in some calculus and pre-calculus problems. The process hinges on adding (b ÷ (2a))² to both sides to create a perfect square trinomial on the left. The worked example below uses a simple monic quadratic; the same logic extends to non-monic cases by dividing through by a first.

1. Step 1: Move the constant to the right

Problem: Solve x² + 6x − 7 = 0 by completing the square. Add 7 to both sides: x² + 6x = 7.

2. Step 2: Compute (b/2)²

Here b = 6. Half of 6 is 3. Square it: 3² = 9. This is the value you will add to both sides.

3. Step 3: Add (b/2)² to both sides

x² + 6x + 9 = 7 + 9 = 16. The left side is now the perfect square trinomial (x + 3)².

4. Step 4: Factor the left side

(x + 3)² = 16.

5. Step 5: Take the square root of both sides

x + 3 = ±√16 = ±4. The ± is critical — omitting it loses one solution.

6. Step 6: Solve for x

x = −3 + 4 = 1 or x = −3 − 4 = −7. Verify x = 1: 1 + 6 − 7 = 0 ✓. Verify x = −7: 49 − 42 − 7 = 0 ✓.

Completing the square always works. The core move is adding (b/2)² to both sides to create a perfect square trinomial.

Real-World Problems Involving Quadratic Equations

Problems involving quadratic equations appear in physics, engineering, business, and everyday geometry. Knowing how to set one up from a written description is just as important as knowing how to solve it. The hardest skill is the translation step: identifying what x represents, expressing the relationships given in the problem as algebraic terms, and then writing the equation. Once the equation is written, you apply whichever solution method fits best. The two worked word problems below cover the two most common problem types at the algebra and pre-calculus level: projectile motion and area problems.

1. Word Problem 1 (Projectile Motion): When does a ball hit the ground?

A ball is launched upward with an initial velocity of 20 m/s from a platform 5 m above the ground. Its height in metres at time t seconds is h(t) = −5t² + 20t + 5. The ball hits the ground when h = 0. Set the equation to zero: −5t² + 20t + 5 = 0. Divide every term by −5: t² − 4t − 1 = 0. Apply the quadratic formula with a = 1, b = −4, c = −1. Discriminant: 16 + 4 = 20. √20 = 2√5. Solutions: t = (4 ± 2√5) ÷ 2 = 2 ± √5. Since time must be positive, discard t = 2 − √5 ≈ −0.24 and use t = 2 + √5 ≈ 4.24 seconds. The ball hits the ground after approximately 4.24 seconds.

2. Word Problem 2 (Area): Find the dimensions of a rectangle

A rectangle has a length that is 3 cm more than twice its width. Its area is 44 cm². Find the dimensions. Let width = w cm. Then length = 2w + 3 cm. Area equation: w(2w + 3) = 44. Expand: 2w² + 3w = 44. Rewrite in standard form: 2w² + 3w − 44 = 0. Discriminant: 9 + 352 = 361. √361 = 19 (exact). Apply the formula: w = (−3 ± 19) ÷ 4. w₁ = (−3 + 19) ÷ 4 = 16 ÷ 4 = 4 cm. w₂ = (−3 − 19) ÷ 4 = −22 ÷ 4 (negative — discard, width cannot be negative). Width = 4 cm, length = 2(4) + 3 = 11 cm. Check: 4 × 11 = 44 ✓.

3. Word Problem 3 (Number Theory): Two consecutive integers

The product of two consecutive positive integers is 156. Find the integers. Let the smaller integer = n. Then the larger = n + 1. Equation: n(n + 1) = 156, which gives n² + n − 156 = 0. Discriminant: 1 + 624 = 625. √625 = 25. n = (−1 + 25) ÷ 2 = 12. The integers are 12 and 13. Check: 12 × 13 = 156 ✓.

For every word problem: define x, write the equation from the given constraints, solve, then verify the answer makes physical sense.

Common Mistakes Students Make — and How to Fix Them

Most errors when solving a problem involving quadratic equation types fall into a small number of repeating patterns. Recognizing these patterns before a test lets you avoid them deliberately. The single most common mistake is forgetting the ± in the quadratic formula and reporting only one solution. The second is mishandling negative signs when squaring b or computing the discriminant. The third is applying the zero-product property to a non-zero product. Each of these is entirely preventable with a consistent checking habit.

1. Mistake 1: Forgetting ± gives only one solution

The formula produces two results: (−b + √Δ) ÷ (2a) and (−b − √Δ) ÷ (2a). Always write both lines separately. On a test, a one-solution answer to a quadratic is almost always worth half marks at best.

2. Mistake 2: Sign error when squaring b

If b = −5, then b² = (−5)² = 25, not −25. The square of any real number is non-negative. Write b² as (b)² with the parentheses to remind yourself to square the whole signed value.

3. Mistake 3: Setting each factor to a non-zero constant

The zero-product property requires one side to be zero. If you have (x + 2)(x − 3) = 8, you cannot set x + 2 = 8 or x − 3 = 8. Expand first: x² − x − 6 = 8, rewrite as x² − x − 14 = 0, then factor or use the formula.

4. Mistake 4: Partial division when simplifying

If you decide to divide 2x² + 4x − 6 = 0 by 2 to simplify, you must divide all three terms: x² + 2x − 3 = 0. Students frequently divide only the first two terms, changing the problem entirely.

5. Mistake 5: Discarding negative solutions automatically

Negative solutions are mathematically valid and should be kept unless the problem context rules them out. Discard a negative value only when it represents something physically impossible — negative length, negative time, negative number of objects. Always write both solutions and then evaluate whether each makes sense in context.

6. Mistake 6: Arithmetic errors in the discriminant

Computing b² − 4ac involves three operations: squaring, multiplying, and subtracting. Each is a potential error point. Work through it step by step — write b² = ___, write 4ac = ___, then subtract — rather than trying to do it in one line.

Slow down on b² − 4ac. Most quadratic formula errors happen in this one calculation.

Practice Problems with Full Solutions

Working through practice problems is the fastest way to consolidate any technique for solving a problem involving quadratic equation methods. The five problems below progress from straightforward factoring to applied word problems. Attempt each one before reading the solution — a genuine attempt, even if incorrect, focuses attention on the exact step where difficulty arises. If you get stuck on a problem, scroll back to the relevant method section and re-read the worked example before trying again.

1. Problem 1 (Factoring, Easy): Solve x² − 9x + 20 = 0

Find two numbers with product 20 and sum −9. The pair is −4 and −5 (since (−4)(−5) = 20 and −4 + (−5) = −9). Factored form: (x − 4)(x − 5) = 0. Solutions: x = 4 or x = 5. Verify x = 4: 16 − 36 + 20 = 0 ✓. Verify x = 5: 25 − 45 + 20 = 0 ✓.

2. Problem 2 (Quadratic Formula, Medium): Solve 3x² + 2x − 8 = 0

a = 3, b = 2, c = −8. Discriminant: 4 − 4(3)(−8) = 4 + 96 = 100. √100 = 10. Apply formula: x = (−2 ± 10) ÷ 6. x₁ = (−2 + 10) ÷ 6 = 8 ÷ 6 = 4/3. x₂ = (−2 − 10) ÷ 6 = −12 ÷ 6 = −2. Solutions: x = 4/3 or x = −2. Verify x = −2: 3(4) + 2(−2) − 8 = 12 − 4 − 8 = 0 ✓.

3. Problem 3 (Repeated Root, Medium): Solve x² − 10x + 25 = 0

a = 1, b = −10, c = 25. Discriminant: 100 − 100 = 0. One repeated solution: x = 10 ÷ 2 = 5. Factored form: (x − 5)² = 0. Verify: (5)² − 10(5) + 25 = 25 − 50 + 25 = 0 ✓.

4. Problem 4 (Completing the Square, Hard): Solve 2x² + 8x + 3 = 0

Divide by 2: x² + 4x + 3/2 = 0. Move constant: x² + 4x = −3/2. Add (4/2)² = 4: x² + 4x + 4 = 4 − 3/2 = 5/2. Factor: (x + 2)² = 5/2. Take square root: x + 2 = ±√(5/2) = ±(√10)/2. Solutions: x = −2 + (√10)/2 ≈ −0.42 or x = −2 − (√10)/2 ≈ −3.58.

5. Problem 5 (Applied Word Problem, Hard): Garden dimensions

A garden is 2 m longer than it is wide. Its area is 48 m². Find the dimensions. Let width = w. Length = w + 2. Equation: w(w + 2) = 48. Standard form: w² + 2w − 48 = 0. Discriminant: 4 + 192 = 196. √196 = 14. w = (−2 + 14) ÷ 2 = 6 m. Length = 6 + 2 = 8 m. Discard w = (−2 − 14) ÷ 2 = −8 (negative width). Check: 6 × 8 = 48 ✓.

After every practice problem, substitute your solutions back into the original equation to confirm. This habit catches arithmetic errors before they become exam losses.

Frequently Asked Questions About Quadratic Equation Problems

These are the questions students most often ask when they first encounter a problem involving quadratic equation work. The answers are direct and short — for detailed explanation and worked examples, refer to the relevant sections above. The answers are direct and short — for detailed explanation and worked examples, refer to the relevant sections above.

1. Q: What makes an equation 'quadratic'?

The highest power of the variable must be exactly 2. Any equation with x² — and no x³ or higher — is quadratic. Examples: x² − 4 = 0 is quadratic; x³ − 4 = 0 is cubic, not quadratic; 2x + 5 = 0 is linear, not quadratic.

2. Q: Which method is fastest for most problems?

For monic quadratics (a = 1) with small integer coefficients, factoring is fastest. For all others, go straight to the quadratic formula. Completing the square is only needed when the problem specifically asks for vertex form or when you are deriving a result in calculus.

3. Q: Why does the quadratic formula have a ± symbol?

When you take the square root of a positive number, there are always two square roots: a positive one and a negative one. For example, √9 = +3 or −3. The ± in the formula captures both square roots so that both solutions of the original equation are recovered in a single expression.

4. Q: Can a quadratic have no real solutions?

Yes. When the discriminant b² − 4ac is negative, the square root in the formula produces an imaginary number. The equation has two complex solutions but no real roots — on a graph, the parabola sits entirely above or entirely below the x-axis and never crosses it.

5. Q: How do I check if my solutions are correct?

Substitute each solution back into the original equation. Both sides must simplify to the same number. This check takes under a minute and catches the vast majority of arithmetic errors. Make it a non-negotiable habit for every quadratic problem you solve.

6. Q: What is the difference between roots, solutions, and zeros?

These three terms describe the same values in different contexts. Solutions or roots of ax² + bx + c = 0 are the x-values that satisfy the equation. Zeros of the function f(x) = ax² + bx + c are the x-intercepts of the parabola — the points where f(x) = 0. All three mean the same thing numerically.

The discriminant b² − 4ac is the quickest way to preview how many real solutions your equation has before doing any further calculation.
Tags:
algebraguidepractice

Get Homework Help Now

Join millions of students using our AI math solver for homework help. Get instant solutions to math problems, step-by-step explanations, and 24/7 homework assistance.

Available for iOS and Android devices