7.3 Quadratic Equations, Vertex Form & Parabolic Functions

Key Takeaways

  • Quadratic functions can be expressed in Standard Form y = ax² + bx + c, Vertex Form y = a(x - h)² + k (vertex at (h, k)), and Factored Form y = a(x - r1)(x - r2) (x-intercepts at r1, r2).
  • The discriminant Δ = b² - 4ac categorizes quadratic roots: Δ > 0 yields 2 distinct real roots, Δ = 0 yields 1 repeated rational real root (parabola vertex touches x-axis), and Δ < 0 yields 2 complex conjugate non-real roots.
  • Completing the square is the foundational algebraic technique used to convert standard form into vertex form and to derive the quadratic formula x = (-b ± sqrt(b² - 4ac)) / (2a).
  • The parabola axis of symmetry is x = -b/(2a), and the vertex coordinate (-b/(2a), f(-b/(2a))) represents the absolute minimum when a > 0 and absolute maximum when a < 0.
  • Applied quadratic optimization models real-world physical and economic phenomena, including maximum projectile heights h(t) = -16t² + v0·t + h0 and maximum business revenues R(p) = p · q(p).
Last updated: August 2026

Quadratic Equations, Vertex Form & Parabolic Functions

Core Competency: Quadratic equations and parabolic models are foundational to intermediate and advanced college mathematics. The ACCUPLACER AAF assessment rigorously evaluates your skill in factoring multi-term polynomials, manipulating the three canonical forms of quadratic functions, completing the square, interpreting the discriminant, and calculating maximum or minimum vertex values in real-world applied scenarios.


The Three Canonical Quadratic Forms

A quadratic function is a second-degree polynomial function. Depending on the analytical goal, quadratics are represented in one of three algebraic forms:

+-----------------------------------------------------------------------------------------+
|                        THE THREE CANONICAL FORMS OF QUADRATICS                          |
+-----------------------+---------------------------+-------------------------------------+
| Quadratic Form        | Algebraic Structure       | Primary Analytical Advantage        |
+-----------------------+---------------------------+-------------------------------------+
| **Standard Form**     | y = ax² + bx + c          | Direct y-intercept at (0, c);       |
|                       |                           | Axis of symmetry x = -b / (2a)      |
+-----------------------+---------------------------+-------------------------------------+
| **Vertex Form**       | y = a(x - h)² + k         | Immediate vertex coordinates (h, k);|
|                       |                           | Max/Min value identification        |
+-----------------------+---------------------------+-------------------------------------+
| **Factored Form**     | y = a(x - r₁)(x - r₂)     | Immediate x-intercepts at (r₁, 0)   |
|                       |                           | and (r₂, 0); Root identification   |
+-----------------------+---------------------------+-------------------------------------+

Parameter Behaviors Across All Forms

  • Leading Coefficient ($a$):
    • If $a > 0$, the parabola opens upward (concave up, $\bigcup$), possessing a global minimum value at its vertex.
    • If $a < 0$, the parabola opens downward (concave down, $\bigcap$), possessing a global maximum value at its vertex.
    • The magnitude $|a|$ dictates vertical stretch ($|a| > 1$, narrow) or vertical compression ($0 < |a| < 1$, wide).
  • Horizontal & Vertical Shifts in Vertex Form: In $y = a(x - h)^2 + k$, the vertex is located at $(h, k)$. Note the subtraction sign inside the parenthetical expression: $y = 3(x - 4)^2 + 5$ has its vertex at $(+4, 5)$, whereas $y = 3(x + 4)^2 + 5$ has its vertex at $(-4, 5)$.

Factoring Methodologies for Quadratic Expressions

Solving quadratic equations of the form $ax^2 + bx + c = 0$ by factoring relies on the Zero-Product Property: if $A \cdot B = 0$, then $A = 0$ or $B = 0$.

Factoring Decision Matrix

  1. Greatest Common Factor (GCF): Always extract the highest common monomial factor first: 6x318x2=6x2(x3)6x^3 - 18x^2 = 6x^2(x - 3)
  2. Difference of Two Squares ($a^2 - b^2$): Factors into conjugate binomials: a2b2=(ab)(a+b)    16x249=(4x7)(4x+7)a^2 - b^2 = (a - b)(a + b) \implies 16x^2 - 49 = (4x - 7)(4x + 7)
  3. Perfect Square Trinomials ($a^2 \pm 2ab + b^2$): a2+2ab+b2=(a+b)2anda22ab+b2=(ab)2a^2 + 2ab + b^2 = (a + b)^2 \quad \text{and} \quad a^2 - 2ab + b^2 = (a - b)^2 9x224x+16=(3x4)29x^2 - 24x + 16 = (3x - 4)^2
  4. Trinomial Factoring with $a = 1$ ($x^2 + bx + c$): Find two integers $p$ and $q$ such that $p \cdot q = c$ and $p + q = b$: x27x+12=(x3)(x4)    x=3,x=4x^2 - 7x + 12 = (x - 3)(x - 4) \implies x = 3, \, x = 4
  5. The $ac$-Method (Grouping) for $a \neq 1$ ($ax^2 + bx + c$):
    • Step 1: Multiply $a \cdot c$.
    • Step 2: Find two factors of the product $ac$ that add up to $b$.
    • Step 3: Split the middle linear term $bx$ into these two components.
    • Step 4: Factor by grouping the first two terms and the last two terms.

Worked Example: The $ac$-Method

Factor and solve: $6x^2 + 11x - 10 = 0$.

  • Step 1: Compute $a \cdot c = 6 \times (-10) = -60$.
  • Step 2: Find factors of $-60$ that sum to $+11$. The factors are $+15$ and $-4$ (since $15 \times (-4) = -60$ and $15 + (-4) = 11$).
  • Step 3: Split $11x$ into $+15x - 4x$: 6x2+15x4x10=06x^2 + 15x - 4x - 10 = 0
  • Step 4: Group terms in pairs: 3x(2x+5)2(2x+5)=03x(2x + 5) - 2(2x + 5) = 0
  • Step 5: Factor out the common binomial $(2x + 5)$: (3x2)(2x+5)=0(3x - 2)(2x + 5) = 0
  • Step 6 (Zero-Product Property): $3x - 2 = 0 \implies x = \frac{2}{3}$; $2x + 5 = 0 \implies x = -\frac{5}{2}$.

Solving Quadratics by Completing the Square

Completing the square converts a quadratic expression from standard form into vertex form and serves as the algebraic proof for the quadratic formula.

Algorithmic Procedure

To solve $ax^2 + bx + c = 0$:

  1. Isolate Variable Terms: Subtract the constant $c$ to the right-hand side: $ax^2 + bx = -c$.
  2. Normalize the Leading Coefficient: If $a \neq 1$, divide all terms by $a$: $x^2 + \frac{b}{a}x = -\frac{c}{a}$.
  3. Add the Square of Half the Linear Coefficient: Compute $\left(\frac{b}{2a}\right)^2$ and add this exact value to both sides of the equation: x2+bax+(b2a)2=ca+(b2a)2x^2 + \frac{b}{a}x + \left(\frac{b}{2a}\right)^2 = -\frac{c}{a} + \left(\frac{b}{2a}\right)^2
  4. Factor the Left Side as a Binomial Square: (x+b2a)2=b24ac4a2\left(x + \frac{b}{2a}\right)^2 = \frac{b^2 - 4ac}{4a^2}
  5. Apply the Square Root Property: Take the square root of both sides, including the $\pm$ operator: x+b2a=±b24ac2a    x=b±b24ac2ax + \frac{b}{2a} = \pm \frac{\sqrt{b^2 - 4ac}}{2a} \implies x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}

Worked Example: Converting to Vertex Form by Completing the Square

Convert $f(x) = 2x^2 - 12x + 23$ to vertex form and state its vertex.

  • Step 1: Factor out leading coefficient $2$ from the variable terms only: f(x)=2(x26x)+23f(x) = 2(x^2 - 6x) + 23
  • Step 2: Complete the square inside parentheses. Half of $-6$ is $-3$, and $(-3)^2 = 9$.
  • Step 3: Adding $9$ inside the parentheses actually adds $2 \times 9 = 18$ to the function. Maintain equality by subtracting $18$ outside: f(x)=2(x26x+9)+2318f(x) = 2(x^2 - 6x + 9) + 23 - 18
  • Step 4: Factor the trinomial: f(x)=2(x3)2+5f(x) = 2(x - 3)^2 + 5
  • Result: The vertex is at $(3, 5)$, and since $a = 2 > 0$, the minimum value is $y = 5$.

The Quadratic Formula & Discriminant Analysis

For any quadratic equation $ax^2 + bx + c = 0$ ($a \neq 0$), the exact solutions are determined by the Quadratic Formula:

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

The Discriminant ($\Delta = b^2 - 4ac$)

The radicand expression under the square root, $\Delta = b^2 - 4ac$, is the discriminant. It dictates the number and mathematical nature of the roots without requiring full computation.

+-----------------------------------------------------------------------------------------+
|                         DISCRIMINANT DIAGNOSTIC MATRIX                                  |
+-----------------------+---------------------------------+-------------------------------+
| Discriminant Value (Δ)| Nature and Number of Roots      | Graphical x-Intercept Profile |
+-----------------------+---------------------------------+-------------------------------+
| Δ > 0 (Perfect Square)| 2 Distinct Rational Real Roots  | Parabola crosses x-axis twice |
|                       | (e.g., Δ = 25, 49, 144)         | at rational coordinates       |
+-----------------------+---------------------------------+-------------------------------+
| Δ > 0 (Non-Square)    | 2 Distinct Irrational Real Roots| Parabola crosses x-axis twice |
|                       | (e.g., Δ = 13, 28; conjugate)   | at radical coordinates        |
+-----------------------+---------------------------------+-------------------------------+
| Δ = 0                 | 1 Repeated Rational Real Root   | Parabola is tangent to x-axis;|
|                       | (Multiplicity 2)                | Vertex touches at (-b/(2a), 0)|
+-----------------------+---------------------------------+-------------------------------+
| Δ < 0                 | 2 Complex Conjugate Roots       | Parabola NEVER touches x-axis;|
|                       | (Non-real roots: u ± vi)        | Entirely above or below axis  |
+-----------------------+---------------------------------+-------------------------------+

Parabola Anatomy & Applied Vertex Optimization

Every parabola modeled by $y = ax^2 + bx + c$ exhibits symmetric geometry defined by key landmarks.

Geometric Features of Parabolas

  • Axis of Symmetry: The vertical line $x = -\frac{b}{2a}$. It passes directly through the vertex and bisects the parabola into two mirror images.
  • Vertex Coordinates: $\left(-\frac{b}{2a}, , f\left(-\frac{b}{2a}\right)\right)$.
  • $y$-Intercept: $(0, c)$, obtained by setting $x = 0$.
  • $x$-Intercepts (Zeroes): Points where $f(x) = 0$, found via factoring or the quadratic formula.

Applied Optimization Word Problems

On the ACCUPLACER, quadratic vertex problems typically appear in two major applied contexts:

1. Projectile Motion Modeling

The vertical height $h(t)$ of an object projected into the air at time $t$ seconds is modeled by: h(t)=16t2+v0t+h0(feet)orh(t)=4.9t2+v0t+h0(meters)h(t) = -16t^2 + v_0 t + h_0 \quad (\text{feet}) \quad \text{or} \quad h(t) = -4.9t^2 + v_0 t + h_0 \quad (\text{meters})

  • Time to Maximum Height: $t_{\text{max}} = -\frac{v_0}{2(-16)} = \frac{v_0}{32}$.
  • Maximum Height Attained: Evaluate $h(t_{\text{max}})$.
  • Total Flight Time (Landing): Solve $h(t) = 0$ for $t > 0$.

Worked Example: Projectile Motion

A flare is launched from a platform $80\text{ feet}$ high with an initial upward velocity of $64\text{ ft/s}$. Its height function is $h(t) = -16t^2 + 64t + 80$.

  1. Time to peak height: $t = -\frac{64}{2(-16)} = \frac{64}{32} = 2\text{ seconds}$.
  2. Maximum peak height: $h(2) = -16(2)^2 + 64(2) + 80 = -64 + 128 + 80 = 144\text{ feet}$.
  3. Time when flare strikes ground ($h(t) = 0$): 16t2+64t+80=0    16(t24t5)=0    16(t5)(t+1)=0-16t^2 + 64t + 80 = 0 \implies -16(t^2 - 4t - 5) = 0 \implies -16(t - 5)(t + 1) = 0 Since time cannot be negative, the flare hits the ground at $t = 5\text{ seconds}$.

2. Revenue Optimization Modeling

Revenue equals unit price times quantity demanded: $R(p) = p \cdot q(p)$. When demand decreases linearly with price ($q(p) = q_0 - mp$), revenue becomes a downward-opening quadratic function whose vertex maximizes revenue.

Loading diagram...
Quadratic Solving and Discriminant Diagnostic Tree
Test Your Knowledge

A quadratic function $f(x) = -2x^2 + 12x - 10$ models the daily profit (in thousands of dollars) of a manufacturing shop based on unit price $x$ (in tens of dollars). What is the maximum daily profit achievable and the corresponding unit price?

A
B
C
D
Test Your Knowledge

What is the classification and nature of the roots for the quadratic equation $3x^2 - 5x + 4 = 0$?

A
B
C
D
Test Your Knowledge

Which of the following represents the vertex form of the quadratic function $g(x) = 2x^2 - 8x + 11$?

A
B
C
D