Fiveable

📈College Algebra Unit 2 Review

QR code for College Algebra practice questions

2.5 Quadratic Equations

2.5 Quadratic Equations

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
📈College Algebra
Unit & Topic Study Guides

Quadratic equations describe relationships where one variable is squared, taking the standard form ax2+bx+c=0ax^2 + bx + c = 0. They show up constantly in physics, economics, and engineering problems, so getting comfortable with the different solving methods here will pay off throughout the course.

You have several tools for solving these: factoring, the square root property, completing the square, and the quadratic formula. Each works best in different situations, and this guide covers when and how to use each one.

Solving Quadratic Equations

Factoring techniques for quadratics

Factoring is usually the fastest method when it works. The idea is to rewrite the quadratic as a product of two binomials, then use the Zero Product Property to find the solutions.

The Zero Product Property says: if ab=0ab = 0, then a=0a = 0 or b=0b = 0 (or both). This is what lets you break a factored equation into two simpler equations.

Steps for solving by factoring:

  1. Write the equation in standard form: ax2+bx+c=0ax^2 + bx + c = 0
  2. Factor the quadratic expression completely
  3. Set each factor equal to zero
  4. Solve each resulting equation

For example, with x25x+6=0x^2 - 5x + 6 = 0:

  • Factor: (x2)(x3)=0(x - 2)(x - 3) = 0
  • Set each factor to zero: x2=0x - 2 = 0 or x3=0x - 3 = 0
  • Solutions: x=2x = 2 or x=3x = 3

These solutions are also called the roots of the equation.

Special factoring patterns to recognize:

  • Difference of squares: a2b2=(a+b)(ab)a^2 - b^2 = (a + b)(a - b)
    • Example: x29=(x+3)(x3)x^2 - 9 = (x + 3)(x - 3)
  • Perfect square trinomials: a2+2ab+b2=(a+b)2a^2 + 2ab + b^2 = (a + b)^2 and a22ab+b2=(ab)2a^2 - 2ab + b^2 = (a - b)^2
    • Example: x2+6x+9=(x+3)2x^2 + 6x + 9 = (x + 3)^2

Factoring by grouping is useful when the leading coefficient a1a \neq 1. You split the middle term, group in pairs, and factor out the GCF from each group. For instance, 6x2+3x6x^2 + 3x can be factored as 3x(2x+1)3x(2x + 1) by pulling out the GCF.

Square root property in equations

The square root property is the go-to method when your equation has a squared expression but no loose xx term (no bxbx). It states:

If x2=ax^2 = a, then x=±ax = \pm\sqrt{a}

The ±\pm is critical. Since both positive and negative numbers give a positive result when squared, you always need both solutions.

Steps:

  1. Isolate the squared term on one side of the equation
  2. Take the square root of both sides
  3. Include ±\pm on the result
  4. Simplify if possible

For example, with x2+4=20x^2 + 4 = 20:

  • Isolate: x2=16x^2 = 16
  • Take the square root: x=±16x = \pm\sqrt{16}
  • Simplify: x=±4x = \pm 4

A common mistake is forgetting the negative solution. Always write ±\pm.

Factoring techniques for quadratics, OpenAlgebra.com: Free Algebra Study Guide & Video Tutorials: Solving Equations by Factoring

Completing the square method

Completing the square works on any quadratic, even when factoring doesn't. It transforms the equation into a perfect square trinomial so you can apply the square root property.

Steps:

  1. Move the constant to the other side: x2+bx=cx^2 + bx = -c
  2. Take half the coefficient of xx, then square it: (b2)2\left(\frac{b}{2}\right)^2
  3. Add that value to both sides of the equation
  4. Factor the left side as a perfect square: (x+b2)2\left(x + \frac{b}{2}\right)^2
  5. Apply the square root property and solve for xx

For example, with x2+6x+5=0x^2 + 6x + 5 = 0:

  • Move the constant: x2+6x=5x^2 + 6x = -5
  • Half of 6 is 3, and 32=93^2 = 9. Add 9 to both sides: x2+6x+9=4x^2 + 6x + 9 = 4
  • Factor: (x+3)2=4(x + 3)^2 = 4
  • Square root property: x+3=±2x + 3 = \pm 2
  • Solutions: x=3+2=1x = -3 + 2 = -1 or x=32=5x = -3 - 2 = -5

Completing the square also converts a quadratic into vertex form: y=a(xh)2+ky = a(x - h)^2 + k, where (h,k)(h, k) is the vertex of the parabola and x=hx = h is the axis of symmetry. This is useful for graphing because:

  • The parabola opens upward if a>0a > 0 and downward if a<0a < 0
  • The graph is symmetric about the axis of symmetry
  • You can plot the vertex first, then find additional points using a table of values

Quadratic Formula and Applications

Factoring techniques for quadratics, OpenAlgebra.com: Free Algebra Study Guide & Video Tutorials

Quadratic formula applications

The quadratic formula works on every quadratic equation, no matter what. When factoring isn't obvious or completing the square gets messy, this is your reliable fallback:

x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}

To use it, identify aa, bb, and cc from the standard form ax2+bx+c=0ax^2 + bx + c = 0, plug them in, and simplify. Be careful with signs, especially when bb or cc is negative.

The discriminant Δ=b24ac\Delta = b^2 - 4ac tells you what kind of solutions to expect before you even solve:

  • Δ>0\Delta > 0: Two distinct real solutions. Example: x25x+6=0x^2 - 5x + 6 = 0 has Δ=2524=1\Delta = 25 - 24 = 1, giving x=2x = 2 or x=3x = 3
  • Δ=0\Delta = 0: One repeated real solution. Example: x26x+9=0x^2 - 6x + 9 = 0 has Δ=3636=0\Delta = 36 - 36 = 0, giving x=3x = 3
  • Δ<0\Delta < 0: No real solutions (only complex solutions). Example: x2+2x+5=0x^2 + 2x + 5 = 0 has Δ=420=16\Delta = 4 - 20 = -16

After plugging into the formula, always simplify your answer by reducing square roots and fractions.

Word problem applications frequently use quadratics. For projectile motion, the height of an object is often modeled by something like h(t)=16t2+64t+5h(t) = -16t^2 + 64t + 5, where tt is time in seconds. Setting h(t)=0h(t) = 0 and solving tells you when the object hits the ground. Always check whether both solutions make sense in context (negative time, for instance, usually doesn't).

Additional Concepts in Quadratic Equations

  • A quadratic equation is a polynomial with a highest exponent of 2. The values aa, bb, and cc are called the coefficients.
  • Graphing a quadratic produces a parabola, a U-shaped curve that opens up or down.
  • The solutions (roots) of a quadratic correspond to the x-intercepts of the parabola, the points where the graph crosses the x-axis. If the discriminant is negative, the parabola doesn't cross the x-axis at all.