Quadratic Equations

A quadratic equation is a polynomial equation of degree 2, which means the highest exponent of the variable is 2.

The standard form of a quadratic equation is:

ax2+bx+c=0ax^2 + bx + c = 0

Where:

  • a,b,ca, b, c are real numbers
  • a0a \neq 0
  • xx is the variable

Intuitive Understanding

Think of a quadratic as a U-shaped curve (parabola) on a graph. It represents situations where changes happen non-linearly, like objects thrown into the air or area-related problems.

If linear equations are straight lines, quadratic equations are their curved cousins.

A quadratic equation always has:

  • At most 2 real roots
  • Can also have imaginary roots

Roots are the values of xx that satisfy the equation — where the parabola intersects the x-axis.


Methods to Solve a Quadratic Equation

Factorization

Used when the equation can be broken down into two binomial terms.

Completing the Square

A universal method, used when factorization doesn’t work easily.

Quadratic Formula

Always applicable.

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

This formula gives:

  • Two real and distinct roots if b24ac>0b^2 - 4ac > 0
  • One real and equal root if b24ac=0b^2 - 4ac = 0
  • Two imaginary roots if b24ac<0b^2 - 4ac < 0

Graphical Method

You draw the parabola and find where it cuts the x-axis (if at all).


Key Terms and Concepts

TermExplanation
RootsValues of xx that satisfy the quadratic equation
DiscriminantD=b24acD = b^2 - 4ac, tells nature of roots
Sum of Rootsba-\frac{b}{a}
Product of Rootsca\frac{c}{a}
ParabolaShape of the graph of a quadratic equation
VertexThe turning point of the parabola, at x=b2ax = \frac{-b}{2a}

Nature of Roots

Discriminant D=b24acD = b^2 - 4acNature of Roots
D>0D > 0 and perfect squareReal, distinct, rational
D>0D > 0 and not a perfect squareReal, distinct, irrational
D=0D = 0Real, equal
D<0D < 0Complex conjugates

Special Cases to Know

  1. Perfect Square Trinomials
x2+2ax+a2=(x+a)2x^2 + 2ax + a^2 = (x + a)^2
  1. Difference of Squares
x2a2=(xa)(x+a)x^2 - a^2 = (x - a)(x + a)
  1. Zero Product Property
    If ab=0ab = 0, then either a=0a = 0 or b=0b = 0

  2. Graph Touches or Cuts X-axis

  • Touches = One root
  • Cuts = Two roots
  • Doesn’t touch = Imaginary roots

Conceptual Tips (Common Mistakes)

MistakeTip
Ignoring coefficient of x2x^2Always divide by aa if it’s not 1 before factoring
Wrong sign during splitting middle termCheck that sum and product match with bb and acac
Misusing ± in quadratic formulaAlways include both roots: ±\pm
Assuming all quadratics are factorableUse discriminant to check first
Not simplifying square roots fullyAlways simplify b24ac\sqrt{b^2 - 4ac} for accuracy

Word Problems

Quadratic equations show up in:

  • Motion problems (throwing, catching, speed/time)
  • Geometry (area, dimensions)
  • Age problems
  • Investment/Profit-related problems

Tip: Set up the equation from English by letting unknown = xx, then model total using quadratic forms.


Graphical Insight

Equation: y=ax2+bx+cy = ax^2 + bx + c

  • If a>0a > 0 → Opens upward (U)
  • If a<0a < 0 → Opens downward (∩)
  • Vertex:
x=b2a,y=f(b2a)x = \frac{-b}{2a}, \quad y = f\left(\frac{-b}{2a}\right)
  • Axis of symmetry: x=b2ax = \frac{-b}{2a}

Examples

Example 1: Factorization

Solve: x2+5x+6=0x^2 + 5x + 6 = 0

(x+2)(x+3)=0x=2,3(x + 2)(x + 3) = 0 \Rightarrow x = -2, -3

Example 2: Quadratic Formula

Solve: 2x2+3x2=02x^2 + 3x - 2 = 0

a=2,b=3,c=2D=9+16=25x=3±254=3±54x=24,84x=12,2a = 2, b = 3, c = -2 \\ D = 9 + 16 = 25 \\ x = \frac{-3 \pm \sqrt{25}}{4} = \frac{-3 \pm 5}{4} \\ x = \frac{2}{4}, \frac{-8}{4} \Rightarrow x = \frac{1}{2}, -2

Example 3: Completing the Square

Solve: x2+6x+5=0x^2 + 6x + 5 = 0

x2+6x=5x2+6x+9=4(x+3)2=4x+3=±2x=1,5x^2 + 6x = -5 \\ x^2 + 6x + 9 = 4 \\ (x + 3)^2 = 4 \Rightarrow x + 3 = \pm 2 \Rightarrow x = -1, -5

Example 4: Word Problem

Q: The product of two consecutive positive integers is 132. Find the integers.
Let the smaller integer be xx:

x(x+1)=132x2+x132=0(x+12)(x11)=0x=11x(x+1) = 132 \Rightarrow x^2 + x - 132 = 0 \Rightarrow (x + 12)(x - 11) = 0 \Rightarrow x = 11