Question
Given a quadratic equation , how do we determine the vertex, axis of symmetry, direction of opening, and roots to sketch the graph?
Solution — Step by Step
The coefficient tells you everything about direction:
- : parabola opens upward (U-shaped, happy face)
- : parabola opens downward (inverted U, sad face)
The larger , the narrower the parabola. makes it wider than .
The axis of symmetry is the vertical line:
The vertex is the point on this axis:
where (the discriminant).
Alternatively, substitute back into the equation to find the -coordinate.
The vertex is the minimum point when and the maximum point when .
Set : solve .
- : two distinct real roots (parabola crosses x-axis at 2 points)
- : one repeated root (parabola touches x-axis at vertex)
- : no real roots (parabola does not touch x-axis)
The y-intercept is simply (put ).
Example: Sketch .
Here (upward), , .
Axis of symmetry:
Vertex: . So vertex = .
: two roots.
Roots: and .
y-intercept: , so point .
Plot these points — vertex at , crosses x-axis at and , y-intercept at — and draw a smooth U-shaped curve.
flowchart TD
A["y = ax2 + bx + c"] --> B["Check sign of a: up or down?"]
B --> C["Find axis: x = minus b over 2a"]
C --> D["Find vertex y-coordinate: substitute x back"]
D --> E["Find discriminant D = b2 minus 4ac"]
E --> F{"D value?"}
F -->|"D greater than 0"| G["Two x-intercepts: use quadratic formula"]
F -->|"D = 0"| H["One x-intercept at vertex"]
F -->|"D less than 0"| I["No x-intercepts"]
G --> J["Plot vertex, roots, y-intercept, draw curve"]
H --> J
I --> J
Why This Works
Every quadratic function is a parabola because the term creates a symmetric curve. Completing the square converts into form, where is the vertex. The formula for the axis of symmetry comes directly from this completion.
The discriminant determines how the parabola interacts with the x-axis because it tells us whether the quadratic equation has real solutions.
Alternative Method
Instead of memorising the vertex formula, complete the square directly. For : take half of (which is ), square it (), add and subtract: . The vertex is immediately visible as . This method works for any quadratic and builds deeper understanding.
Common Mistake
Students forget to include the sign of in the vertex formula. They calculate correctly but then find the y-coordinate by computing and forget that could be negative. A safer approach: just substitute back into the original equation to get the y-coordinate. This avoids the sign confusion entirely.