Quadratic Equations

A quadratic equation is a second-degree polynomial equation of the form ax2+bx+c=0ax^2 + bx + c = 0. Its graph is a symmetric U-shaped curve known as a parabola.

The Standard Form

Standard Equation

ax2+bx+c=0(a0) ax^2 + bx + c = 0 \quad (a \neq 0)

Methods of Solving

  • Factoring: Best when the trinomial is easily reducible to (xp)(xq)(x-p)(x-q).
  • Completing the Square: Useful for deriving the vertex and for non-factorable equations.
  • Quadratic Formula: The universal "hammer" that works for all quadratics.

The Quadratic Formula

Universal formula for finding roots of any quadratic equation.

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

Variables

SymbolDescriptionUnit
xxThe roots or solutions of the quadratic equation-
aaCoefficient of the squared term (cannot be zero)-
bbCoefficient of the linear term-
ccConstant term-
b24acb^2 - 4acThe discriminant (determines the nature of the roots)-

Vieta's Formulas

Vieta's Formulas relate the roots of a polynomial to its coefficients. For a quadratic equation ax2+bx+c=0ax^2 + bx + c = 0 with roots r1r_1 and r2r_2:

Sum, Difference, and Product of Roots

  • Sum of the Roots (r1+r2r_1 + r_2): equals b/a-b/a.
  • Product of the Roots (r1r2r_1 \cdot r_2): equals c/ac/a.
  • Difference of the Roots (r1r2|r_1 - r_2|): equals b24aca\frac{\sqrt{b^2 - 4ac}}{|a|}. This can be derived from the identity (r1r2)2=(r1+r2)24r1r2(r_1 - r_2)^2 = (r_1 + r_2)^2 - 4r_1r_2.
  • Sum of Squares of Roots (r12+r22r_1^2 + r_2^2): equals b22aca2\frac{b^2 - 2ac}{a^2}. This is derived from (r1+r2)22r1r2(r_1 + r_2)^2 - 2r_1r_2.
  • Constructing an Equation: If you already know the roots, you can quickly build the quadratic equation: x2(sum of roots)x+(product of roots)=0x^2 - (\text{sum of roots})x + (\text{product of roots}) = 0.

The Discriminant (Δ\Delta)

Determines the number and nature of roots based on the expression b24acb^2 - 4ac:

Discriminant Cases

  • Δ>0\Delta \gt 0: Two distinct real roots (intersects x-axis twice).
  • Δ=0\Delta = 0: One repeated real root (vertex touches x-axis).
  • Δ<0\Delta \lt 0: Two complex conjugate roots (no x-intercepts).

Interactive Visualizer

Adjust aa to control width and direction, bb to shift the axis of symmetry, and cc to change the y-intercept.

Quadratic Explorer:y=ax2+bx+cy = ax^2 + bx + c

a (Quadratic)1
b (Linear)0
c (Constant)0
y=x2y = x^2

Vertex: (0.00, 0.00)

xy
Key Takeaways
  • Vertex (h,kh, k): The peek or valley of the parabola. h=b/(2a)h = -b/(2a).
  • Symmetry: Every parabola is symmetric about the vertical line x=hx = h.
  • Complex Roots: If the discriminant is negative, the graph never touches the x-axis.
  • Applications: Projectile motion, area optimization, and profit maximization often involve quadratics.