Skip to content
MathAnvil
§ Algebra

Quadratic Equations

§ Algebra

Quadratic Equations

CCSS.HSA.REICCSS.HSA.SSE3 min read

A quadratic equation is a polynomial equation of degree 2, written in the standard form ax² + bx + c = 0, where a ≠ 0. These equations produce curved graphs called parabolas and can have 0, 1, or 2 real solutions. The solutions represent the x-intercepts where the parabola crosses the horizontal axis.

§ 01

Why it matters

Quadratic equations model countless real-world situations involving area, projectile motion, and optimisation problems. Engineers use them to calculate the trajectory of a football kicked 15 metres across a pitch, whilst architects apply quadratic principles when designing curved structures like bridges spanning 100-metre rivers. In business, quadratic models help determine maximum profit when selling 250 concert tickets at £20 each. Physics students encounter quadratics when calculating how long a ball takes to fall 45 metres from a building. The discriminant (b² - 4ac) predicts whether a quadratic has 2, 1, or 0 real solutions, essential knowledge for GCSE students tackling Year 10 factoring problems and Year 11 completing the square techniques. These skills directly support A-level mathematics, where quadratics appear in calculus, trigonometry, and complex number theory.

§ 02

How to solve quadratic equations

Quadratic Equations

  • Write in standard form: ax² + bx + c = 0.
  • Factor, or use the quadratic formula: x = (-b ± √(b²-4ac)) / 2a.
  • Check both solutions by substituting back.

Example: x² − 5x + 6 = 0 → (x−2)(x−3) = 0 → x = 2 or x = 3.

§ 03

Worked examples

Beginner§ 01

A square has an area of 9 cm². What is the side length?

Answer: x = 3 cm (side length must be positive)

  1. Interpret the context Side length = x, so x² = 9 A square's area equals side length squared. Since length must be positive, we only keep the positive root.
  2. Understand the equation x² = 9 We need to find a number that, when squared (multiplied by itself), gives us 9.
  3. Take the square root of both sides x = ±√9 When we take the square root, we must include BOTH the positive and negative root, because both (+a)² and (−a)² give a².
  4. Calculate √9 √9 = 3 Since 3 × 3 = 9, the square root of 9 is 3.
  5. Write both solutions x = 3 or x = −3 A quadratic equation can have up to 2 solutions. Here we have exactly 2.
  6. Verify both solutions (3)² = 9 ✓, (−3)² = 9 ✓ Substitute each value back into x² = 9 to confirm.
Easy§ 02

A rectangle's length is 1 cm more than its width. Its area is 20 cm². Find the dimensions.

Answer: Width = 4 cm, Length = 5 cm

  1. Set up the equation Let x = width. Then length = x + 1, area = x(x + 1) = 20 → x² + 1x − 20 = 0 Width is x, length is x + 1. Area = width × length = 20.
  2. Write the equation in standard form x² − 9x + 20 = 0 (a = 1, b = -9, c = 20) Standard form is ax² + bx + c = 0. Identify a, b, and c.
  3. Find two numbers that multiply to c and add to b Need: p × q = 20 and p + q = -9 → p = -5, q = -4 We need two numbers whose product is 20 and whose sum is -9. Those are -5 and -4 because -5 × -4 = 20 and -5 + -4 = -9.
  4. Write the factored form (x - 5)·(x - 4) = 0 Rewrite the quadratic as a product of two binomials.
  5. Apply the zero product property Set each factor = 0: x = 5, x = 4 If a × b = 0, then a = 0 or b = 0. Set each factor equal to zero and solve.
  6. Verify by substituting back x = 5: 5² − 9·5 + 20 = 25 − 45 + 20 = 0 ✓ Both solutions satisfy the original equation.
Medium§ 03

x² − 3x + 0 = 0

Answer: x = 0 or x = 3

  1. Write the equation in standard form x² − 3x + 0 = 0 (a = 1, b = -3, c = 0) Standard form is ax² + bx + c = 0. Identify a, b, and c.
  2. Find two numbers that multiply to c and add to b Need: p × q = 0 and p + q = -3 → p = 0, q = -3 We need two numbers whose product is 0 and whose sum is -3. Those are 0 and -3 because 0 × -3 = 0 and 0 + -3 = -3.
  3. Write the factored form x·(x - 3) = 0 Rewrite the quadratic as a product of two binomials.
  4. Apply the zero product property Set each factor = 0: x = 0, x = 3 If a × b = 0, then a = 0 or b = 0. Set each factor equal to zero and solve.
  5. Verify by substituting back x = 0: 0² − 3·0 + 0 = 0 + 0 + 0 = 0 ✓ Both solutions satisfy the original equation.
§ 04

Common mistakes

  • Forgetting to write equations in standard form leads to incorrect identification of coefficients, such as treating 3x² - 7 = 2x as having b = 2 instead of b = -2 after rearranging to 3x² - 2x - 7 = 0
  • Applying the zero product property incorrectly produces wrong solutions, like solving (x - 3)(x + 5) = 0 as x = 3 and x = 5 instead of x = 3 and x = -5
  • Calculation errors with the discriminant create false conclusions about solution types, such as computing b² - 4ac = 25 - 16 = 11 as negative, incorrectly stating the equation has no real solutions
§ 05

Frequently asked questions

What is the difference between linear and quadratic equations?
Linear equations have degree 1 (highest power of x is 1) and graph as straight lines, whilst quadratic equations have degree 2 (highest power is x²) and graph as curved parabolas. Linear equations like 3x + 5 = 0 have exactly one solution, but quadratics can have 0, 1, or 2 real solutions.
When should you use the quadratic formula versus factoring?
Factoring works best when solutions are small integers, like x² - 5x + 6 = 0 factoring to (x - 2)(x - 3) = 0. Use the quadratic formula x = (-b ± √(b² - 4ac)) ÷ 2a when factoring proves difficult or when coefficients produce non-integer solutions.
How do you check if quadratic equation solutions are correct?
Substitute each solution back into the original equation and verify both sides equal zero. For x² - 3x - 4 = 0 with solutions x = 4 and x = -1, check: (4)² - 3(4) - 4 = 16 - 12 - 4 = 0 ✓ and (-1)² - 3(-1) - 4 = 1 + 3 - 4 = 0 ✓.
What does the discriminant tell you about quadratic solutions?
The discriminant b² - 4ac determines solution types: positive values indicate 2 real solutions, zero indicates 1 repeated solution, and negative values indicate no real solutions. For x² - 6x + 9 = 0, the discriminant equals 36 - 36 = 0, producing one solution x = 3.
Why do quadratic equations sometimes have negative solutions?
Quadratic equations model mathematical relationships where negative values make sense, like profit-loss scenarios or positions relative to a reference point. The equation x² - 9 = 0 yields x = ±3 because both 3² and (-3)² equal 9, representing valid mathematical solutions even when context requires positive values only.
§ 06

See also

§ 06

Where to next?

Share this article