A quadratic equation + bx + c = 0 (a != 0) is solved using the quadratic formula x = (-b +/- sqrt( - 4ac))/(2a). The discriminant D = - 4ac determines root nature: D > 0 yields two distinct real roots (rational if D is a perfect square with rational coefficients), D = 0 yields repeated roots, and D < 0 yields complex conjugate roots. For polynomials with real coefficients, complex roots and irrational roots (of the form p +/- sqrt(q)) always appear in conjugate pairs.
Vieta's formulas connect roots to coefficients: sum of roots = -b/a, product = . These enable computation of symmetric functions like + = (alpha+beta)^2 - 2alphabeta without finding individual roots. The recurrence = (-b/a)*S_(n-1) - *S_(n-2) computes higher power sums efficiently.
The quadratic function f(x) = + bx + c represents a parabola with vertex at (-, -). For a > 0, the minimum is -; for a < 0, the maximum is -. Sign analysis of + bx + c uses: if a > 0 and D < 0, expression is positive for all real x.
Location of roots problems require three conditions: (1) discriminant condition D >= 0, (2) function value conditions f(k) > 0 or f(k) < 0 at boundary points, and (3) vertex position conditions. For both roots in interval (p, q): D >= 0, af(p) > 0, af(q) > 0, p < - < q.
The common root condition for + x + = 0 and + x + = 0 is ( - )^2 = ( - )( - ). Equations reducible to quadratics include biquadratics (substitution t = ), reciprocal equations (t = x + 1/x), and equations with sqrt terms requiring squaring.