A quadratic function can be found from three points, from a vertex plus one point, or from two zeros plus one extra value.
Finding a quadratic function gets much easier once you stop treating every problem as the same kind of puzzle. A parabola can be pinned down in more than one way, and the fastest method depends on what the problem gives you. Sometimes you get points. Sometimes you get roots. Sometimes you get a vertex and one other value.
A quadratic function has the form f(x) = ax² + bx + c with a ≠ 0. That degree-2 shape is what makes the graph a parabola. If you know enough facts about that parabola, you can write the full function instead of guessing and checking.
This article walks through the three setups students see most often. You’ll also see when each form is the better pick, which errors waste the most time, and how to check your answer before you move on.
How To Find a Quadratic Function From Given Information
The first step is choosing the right form. That one choice can cut the work in half. OpenStax breaks quadratic expressions into standard, factored, and vertex form in a way that matches what most algebra classes use, so it’s a handy reference if you want to compare the forms side by side through OpenStax’s lesson on different forms of quadratics.
These are the three forms you’ll use most:
- Standard form:f(x) = ax² + bx + c
- Vertex form:f(x) = a(x – h)² + k
- Factored form:f(x) = a(x – r₁)(x – r₂)
Each one puts a different feature front and center. Standard form works well when you have three points. Vertex form is clean when the vertex is known. Factored form is the easiest route when the x-intercepts are given.
What You Need To Determine One Unique Quadratic
One quadratic function is fixed when you know enough data to solve for its constants. Since there are three unknown parts in standard form, you usually need three independent facts.
- Three distinct points on the parabola
- The vertex and one other point
- Two roots and one other point
- A table of values that lets you recover three independent conditions
If the data repeat the same fact in disguise, you still won’t have enough. That’s where many wrong answers start.
Pick The Form Before You Start Solving
Students often jump into ax² + bx + c even when another form would be cleaner. You can do that, but it usually adds extra algebra. Pick the form that matches the data already sitting in front of you.
MathWorld gives a concise description of a quadratic function and its relation to parabolas on Wolfram MathWorld’s quadratic function page. That link is useful when you want a formal definition without classroom padding.
Method 1: Use Three Points
This is the plainest route when you’re given coordinates such as (0, 5), (1, 2), and (3, 8). Start with standard form:
f(x) = ax² + bx + c
Then plug each point into the equation. Each point gives one equation. Three points give a system of three equations, which lets you solve for a, b, and c.
Worked Example With Three Points
Suppose the parabola passes through (0, 3), (1, 6), and (2, 11).
- Plug in (0, 3): 3 = a(0)² + b(0) + c, so c = 3.
- Plug in (1, 6): 6 = a + b + 3, so a + b = 3.
- Plug in (2, 11): 11 = 4a + 2b + 3, so 2a + b = 4.
Now subtract the second simplified equation from the third: (2a + b) – (a + b) = 4 – 3. That gives a = 1. Then b = 2. Since c = 3, the function is:
f(x) = x² + 2x + 3
Check it with all three points. If one point fails, the algebra slipped somewhere.
| Given Data | Best Form | Why It Works Well |
|---|---|---|
| Three points | Standard form | Each point gives one linear equation in a, b, and c |
| Vertex and one point | Vertex form | The vertex drops straight into h and k |
| Two x-intercepts and one point | Factored form | The roots drop straight into the factors |
| Y-intercept plus two more points | Standard form | The y-intercept gives c right away |
| Axis of symmetry and vertex | Vertex form | The axis is already built into the vertex |
| Table of values | Usually standard form | Easy to substitute rows into ax² + bx + c |
| Graph with visible roots and one point | Factored form | Roots come from the graph, then solve for a |
| Graph with visible vertex and one point | Vertex form | Fastest route from graph to equation |
Method 2: Use The Vertex And One Other Point
If the vertex is known, vertex form is the neatest choice:
f(x) = a(x – h)² + k
Here, (h, k) is the vertex. That means two pieces of the function are already settled. You only need to solve for a.
Worked Example With A Vertex
Say the vertex is (2, -1) and the parabola passes through (4, 7).
Write the function in vertex form first:
f(x) = a(x – 2)² – 1
Now plug in the point (4, 7):
7 = a(4 – 2)² – 1
7 = 4a – 1
8 = 4a
a = 2
So the function is:
f(x) = 2(x – 2)² – 1
This method is short because the vertex already locks down the turning point. If the graph opens upward, a is positive. If it opens downward, a is negative.
When Vertex Form Saves Time
Use it when the problem gives words like “maximum,” “minimum,” “turning point,” or “vertex.” Those clues are telling you the same thing. Don’t translate that into standard form too early unless the problem asks for it.
If you want to test your result visually, the Desmos graphing calculator is handy for checking whether your equation matches the expected shape, roots, and vertex.
Method 3: Use Two Zeros And One Extra Point
If the x-intercepts are known, factored form is the natural fit:
f(x) = a(x – r₁)(x – r₂)
The numbers r₁ and r₂ are the zeros, also called roots. Once those are in place, one extra point lets you solve for a.
Worked Example With Roots
Suppose the zeros are x = -1 and x = 3, and the parabola passes through (0, -6).
Start with factored form:
f(x) = a(x + 1)(x – 3)
Now plug in (0, -6):
-6 = a(0 + 1)(0 – 3)
-6 = -3a
a = 2
So the function is:
f(x) = 2(x + 1)(x – 3)
If you need standard form, expand it at the end:
f(x) = 2(x² – 2x – 3) = 2x² – 4x – 6
| Method | Starting Form | Main Step |
|---|---|---|
| Three points | ax² + bx + c | Substitute all points and solve the system |
| Vertex + one point | a(x – h)² + k | Insert the vertex, then solve for a |
| Two zeros + one point | a(x – r₁)(x – r₂) | Insert the roots, then solve for a |
Common Mistakes That Throw Off The Answer
Most errors come from sign slips, not from hard algebra. A parabola problem can look messy, yet the wrong answer often starts with one tiny minus sign.
- Writing (x + 2) when the root is 2 instead of -2
- Forgetting that vertex form uses (x – h), not (x + h)
- Using three points that do not come from the same quadratic
- Expanding too early and making the expression harder than it needs to be
- Stopping before checking the result in the original data
That last step matters. Plug the known points back in. Check the vertex or roots again. A clean check takes less than a minute and saves a lot of redo work.
How To Check That Your Quadratic Function Is Right
Once you’ve got an equation, run a quick verification pass. You don’t need anything fancy.
- Substitute every given point.
- Check whether the vertex or roots match the original data.
- Look at the sign of a to see whether the parabola opens the right way.
- Graph it if the problem came from a picture or table.
If all those pieces line up, your function is on solid ground. If one piece fails, go back to the form you picked first. In many cases, the form was right and the arithmetic slipped. In other cases, the form itself made the job harder than it had to be.
One Fast Way To Decide Which Method To Use
Here’s the shortest mental checklist:
- If you see three points, use standard form.
- If you see a vertex, use vertex form.
- If you see two x-intercepts, use factored form.
That simple sorting habit makes these problems feel much less random. You’re not hunting for a trick. You’re matching the data to the form that was built for it.
References & Sources
- OpenStax.“Different Forms of Quadratics.”Shows standard, factored, and vertex form and supports the form-selection advice used in the article.
- Wolfram MathWorld.“Quadratic Function.”Provides the formal definition of a quadratic function and its link to the parabola shape.
- Desmos.“Graphing Calculator.”Supports the graph-check step by letting readers test a quadratic equation against points, roots, and vertex behavior.