Part of ALG-05 — Quadratic Equations

Complete Overview of Quadratic Equations

by Notetube Officialoverview summary320 words7 views

A quadratic equation ax2ax^2 + bx + c = 0 (a != 0) is solved using the quadratic formula x = (-b +/- sqrt(b2b^2 - 4ac))/(2a). The discriminant D = b2b^2 - 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 = ca\frac{c}{a}. These enable computation of symmetric functions like alpha2alpha^2 + beta2beta^2 = (alpha+beta)^2 - 2alphabeta without finding individual roots. The recurrence SnS_n = (-b/a)*S_(n-1) - ca\frac{c}{a}*S_(n-2) computes higher power sums efficiently.

The quadratic function f(x) = ax2ax^2 + bx + c represents a parabola with vertex at (-b2a\frac{b}{2a}, -D4a\frac{D}{4a}). For a > 0, the minimum is -D4a\frac{D}{4a}; for a < 0, the maximum is -D4a\frac{D}{4a}. Sign analysis of ax2ax^2 + 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 < -b2a\frac{b}{2a} < q.

The common root condition for a1a_1x2x^2 + b1b_1x + c1c_1 = 0 and a2a_2x2x^2 + b2b_2x + c2c_2 = 0 is (c1c_1a2a_2 - c2c_2a1a_1)^2 = (a1a_1b2b_2 - a2a_2b1b_1)(b1b_1c2c_2 - b2b_2c1c_1). Equations reducible to quadratics include biquadratics (substitution t = x2x^2), reciprocal equations (t = x + 1/x), and equations with sqrt terms requiring squaring.

Want to generate AI summaries of your own documents? NoteTube turns PDFs, videos, and articles into study-ready summaries.

Sign up free to create your own