Quadratic Functions/Parabolas

Quadratic functions are equations where the independent variable (usually x) is squared. A typical example of a quadratic equation is y=x2+bx+c , although the exact form can differ. The graph of a quadratic function is a parabola, which is a U-shaped curve that opens either up or down. One important thing to note is that x should be the only variable squared - if you see an x2 and a y2 in the same equation, you're looking at an equation for a circle, not a parabola.

Parabolas

As mentioned above, a parabola is a U-shaped curve that opens either up or down. The simplest parabola would be the graph of y=x2 , which is shown below:
By changing the equation, we can change the shape of the parabola, making it wider, narrower, shifted up, down, left, right, or flipped upside down (or any combination of these).
There are a few important features of a parabola that will often be relevant to the SAT:
  • Which direction the parabola opens
  • The vertex
  • The x-intercepts

Direction

The direction of a parabola (whether it looks like a U or an upside-down U) is determined by the sign of the coefficient of the x2 term. If the coefficient is positive, the parabola opens upward (like a U). If the coefficient is negative, the parabola opens downward (like an upside-down U). In the graph of y=x2 above, the coefficient of the x2 term is 1, so the parabola opens upward. The graph of y=-x2 is shown below.

Vertex

The vertex of a parabola is the point where the curve changes direction. At this point, the slope of the line is zero. For U-shaped parabolas that open upward, like y=x2 , this is the minimum point. The slope is decreasing on the left side of the vertex, increasing on the right side, and zero right at the vertex. For inverted U-shaped parabolas that open downward, like y=-x2 , this is the maximum point.

X-intercepts

The x-intercepts of a parabola are the points where the parabola crosses the x-axis. For any point on the x-axis, the y-coordinate is 0, so to find the x-intercepts, we set y=0 and solve for x. For example, to find the x-intercepts of y=x2+2x+1 , we set y=0 and solve for x:
0=x2+2x+1
By solving for x in the above equation, we would find the x values where the parabola crosses the x-axis. We'll get more into how to actually solve for x below.
Number of x-intercepts
There can be 0, 1, or 2 x-intercepts. In the examples below, the graph of y=x2 has just 1 x-intercept, because it just glances off the x axis at its vertex. The graph of y = x2 - 1 has 2 x-intercepts, because it crosses the x axis twice. The graph of y = x2 + 1 has no x-intercepts, because it never crosses the x axis.

Standard Form

A quadratic equation can be expressed in different formats, but the most common is the standard form. The standard form of a quadratic equation is y=ax2+bx+c , where a, b, and c are constants. An example of a quadratic equation in standard form is y=x2+2x+1 . When a quadratic is expressed in a different form, you can always manipulate it into standard form. From standard form, we can apply various rules and formulas to find important information about the parabola.

Vertex from Standard Form

When a quadratic equation is in standard form ( y=ax2+bx+c ), we can find the x-coordinate of the vertex using the formula below:
x=-b2a
Once we have the x-coordinate, we can find the y-coordinate by plugging the x-coordinate back into the original equation.
For example, take the quadratic equation below:
y=3x2+12x+8
In terms of standard form, our "a" is 3, our "b" is 12, and our "c" is 8. So, to get the x-coordinate of the vertex, we plug in the values for a and b into the formula x=-b2a , like this:
x=-(12)2·(3)=-126=-2
So, the x-coordinate of the vertex is -2.
Then, to find the y-coordinate, we plug -2 in for x in the original equation:
y=3(-2)2+12(-2)+8
y=3·4-24+8
y=12-24+8=-4
So, the y-coordinate of the vertex is -4. Therefore, the vertex of the parabola is (-2, -4).

Finding the x-intercepts

In any function, not just quadratics, the x-intercepts occur wherever y=0. This is because, as can be easily seen by looking at the x and y axis, any point on the x-axis has a y-coordinate of 0. So, to find the x-intercepts of a quadratic equation, we set y=0 and solve for x. Thus, finding the x-intercepts of a quadratic function is equivalent to solving a quadratic equation that is set equal to 0.
There are two main ways to solve a quadratic equation in standard form: factoring and using the quadratic formula. When possible, factoring is usually faster and easier, so it's always a good idea to try that first. But not all quadratics can be factored, so in those cases we can use the quadratic formula.
Let's look at an example:

Factoring

Factoring a quadratic means you are manipulating the equation so that you end up with two expressions that are multiplied together. For example, the quadratic equation y=x2+7x+12 can be factored into y=(x+3)(x+4). You'll notice that if you multiply the two expressions together (using the FOIL method), you get back the original quadratic equation.
Factoring when "a" is 1
When the coefficient of the x2 term is 1 (aka "a" is 1 in standard form), factoring is relatively simple. We just need to find two numbers that multiply together to get the constant term (c) and add up to the coefficient of the x term (b). For example, take the equation below:
y=x2+7x+12
We need to find two numbers that multiply to 12 and add up to 7. These numbers are 3 and 4, so we can factor the quadratic as:
y=(x+3)(x+4)
Let's do one more example:
y=x2+2x+15
Here, we need to find two numbers that multiply to 15 and add up to 2. These numbers are 5 and -3, so we can factor the quadratic as:
y=(x+5)(x-3)
When a > 1: Factor by grouping
When the coefficient of the x2 term is greater than 1, factoring is a bit more complicated. We need to find two numbers that multiply to the product of a and c, and add up to b. For example, take the equation below:
y=4x2+11x+6
Here, we need to find two numbers that multiply to 24 and add up to 11. These numbers are 3 and 8 (since 3 * 8 = 24 and 3 + 8 = 11).
Once we've found the two numbers, we use them to split the "x" term into the sum of two terms, like this:
y=4x2+8x+3x+6
Next, we factor out the greatest common factor from the first two terms and the last two terms. Since 4x2 and 8x have a common factor of 4x, we can factor out 4x from the first two terms. And 3x and 6 have a common factor of 3, so we can factor out 3 from the last two terms:
y=4x(x+2)+3(x+2)
It should always work out so that the two terms in parentheses are the same. In this case, both terms in parentheses are (x+2), so we can factor out (x+2) from the entire expression, giving us the final factored form:
y=(x+2)(4x+3)
Special cases
While the above approaches will cover all quadratic equations that are factorable, there are two special patterns worth recognizing that might help you factor them more quickly. These two special cases are:
  1. A difference of squares
    A difference of squares refers to any time you have a quadratic with two terms, where you are subtracting a term that is a perfect square from another perfect square.

    The general formula for factoring a difference of squares is:

    a²-b²=(a+b)(a-b)

    For example, take the expression below:

    4x2-9
    This is a difference of squares because we are subtracting a perfect square (9) from another perfect square (4x2).
    To write this as a product of two binomials (aka factor it), our first binomial is the square root of the first term plus the square root of the second term, and our second binomial is the square root of the first term minus the square root of the second term.

    In our example, the square root of the first term (4x2) is 2x, and the square root of the second term (9) is 3. So our two binomials are 2x+3 and 2x-3.

    So, we can factor the expression as:

    y=(2x+3)(2x-3)

  2. A perfect square trinomial
    A perfect square trinomial is a quadratic that is the square of a binomial. For example, the expression x²+6x+9 is a perfect square trinomial because it is the equivalent of a binomial squared: (x+3)².

    It's a bit more difficult to spot a perfect square trinomial than to spot a difference of squares, but there is a pattern to it, and if you spot that pattern, you can factor it much more quickly.

    The pattern is that the first and last terms are perfect squares, and the middle term is twice the product of the square roots of the first and last terms.

    For example, take the expression below:

    4x²+12x+9

    We can see that the first and last terms are perfect squares: the square root of the first term is 2x, and the square root of the last term is 3. When we multiply these together and the multiply by two, we get (2x)(3)(2)=12x, which is indeed the middle term.

    Therefore, we can factor this expression as:

    (2x+3)²=0

Quadratic Formula

The quadratic formula is a formula that can be used to find x-intercepts of a quadratic function, or the solutions to a quadratic equation or system of equations. The quadratic formula is shown below:
x=-b±b²-4ac2a
Before applying the formula, however, we need to make sure the quadratic equation is in standard form, and set equal to 0. So it needs to look something like this:
ax2 + bx + c = 0
For example, say we started with the function below:
f(x) = 5(x-2)(x+4) + 8
In order to use the quadratic formula, we first need to get this into standard form. To do this, we can FOIL the expression in the parentheses, like this:
f(x) = 5(x2 + 2x - 8) + 32
Next, we can distribute the 5 to the terms in the parentheses:
f(x) = 5x2 + 10x - 40 + 32
Now, we can combine like terms:
f(x) = 5x2 + 10x - 8
Now, if we're looking for the x-intercepts, these occur when y=0. So we set the equation equal to 0:
0 = 5x2 + 10x - 8
Now that we have the equation in standard form and set equal to 0, we can apply the quadratic formula. First, we identify the values of a, b, and c. In this case:
a = 5, b = 10, c = -8
Now, we can plug these values into the quadratic formula:
x=-(10)±(10)²-4(5)(-8)2(5)
x=-10±100+16010
x=-10±26010
x=-1±26010
This gives us two solutions:
x=-1+26010
x=-1-26010
Which we could also represent as decimal approximations:
x = 1.28 and x = -3.28

Sum of Solutions from Standard Form

When we solve a quadratic equation, as we'll explore further below, sometimes we end up with two solutions, sometimes one, and sometimes no solutions. Whenever there are two solutions, we can easily find the sum of those solutions using the formula:
-ba
Or, if there is a single solution, the above formula will give us the result of adding that solution to itself (we can think of the "two" solutions as being the same solution twice).
Occasionally, on the SAT, the question will actually ask you what the sum of the solutions (or x-intercepts) is. Of course, you could always find the two solutions by factoring or using the quadratic formula, then add them together. But if you remember the handy formula above, you can jump to the answer much more quickly!
Let's look at an example:
x²+7x+12=0
We found earlier, in the "Factoring when a = 1" section, that the solutions to this equation are x = -3 and x = -4. Adding these together, we get -7.
Now, let's show that we get the same result using the "sum of solutions" formula. Linking this back to standard form (ax2 + bx + c = 0), we have:
a = 1, b = 7, c = 12
Plugging these values into the "sum of solutions" formula, we get:
-(7)(1)=-7
And there we have it! The sum of the solutions is -7, just as we found earlier.

Relating the equations for the vertex and the sum of solutions

You might have noticed that our equation for getting the x-coordinate of the vertex (-ba) is very similar to the formula for the sum of the solutions (-b2a).

There is a good reason for this. Remember that our solutions are the same as the x-intercepts of the quadratic function.

As we'll get explore in more detail below, the x-coordinate of the vertex of a parabola falls halfway between the x-intercepts. In other words, it is the average of the x-intercepts. To take the average of two numbers, we add them together and divide by 2.

So it makes sense that when we take the sum of the solutions (-ba) and then divide by 2, we end up with -b2a, which is our formula for the x-coordinate of the vertex.

Vertex Form

Vertex form is a different format that can be used to represent a quadratic function. While less commonly used than standard form, it can be useful for finding the vertex of a quadratic function. A quadratic function in vertex form looks like this:
y=a(x-h)²+k
In this format, (h, k) is the vertex of the parabola. Similarly to standard form, the sign of "a" tells you whether the parabola opens up or down. If "a" is positive, the parabola opens up, and if "a" is negative, the parabola opens down. It's important to note that the default form has x - h, not h + x, meaning the x-coordinate of the vertex has the opposite sign of what you see in the parentheses.
For example, if we have the following quadratic function:
y=2(x+2)²+3
The x-coordinate of the vertex is -2, and the y-coordinate is 3.
It's important to be familiar with the vertex form of a quadratic function. Occasionally on the SAT, a question will have a quadratic function that is already in vertex form, and ask you about its vertex. Of course, you could always convert it to standard form, then find the x-coordinate of the vertex using -b2a , then plug that back into the equation to find the y-coordinate. But this would take way more time than just recognizing that it's already in vertex form, so the vertex is simply (h, k).

Single Variable Quadratic Equations

A single variable quadratic equation is a quadratic equation that has only one variable. Rather than being expressed as a function of x, like y = x2 + 4x + 3, or f(x) = x2 + 4x + 3, it is simply expressed as an equation where the only variable is x.
For example, below are a few examples of single variable quadratic equations:
2x²-4x+3=5x²+6x+8
(x+3)(x-2)=(x+1)(x-4)
3(x-2)2+5=4x2-20x+29

Solving Single Variable Quadratic Equations

Solving a single variable quadratic equation consists of three main steps:
  1. Isolate the quadratic expression on one side of the equation, so that it is equal to 0.
  2. Get the expression into standard form (ax2 + bx + c).
  3. Solve for x by either factoring or using the quadratic formula.
Let's look at an example:
(2x-3)(x+5)=(x+5)(x-1)
First, we'll get all terms on one side of the equation, so that it is equal to 0.
(2x-3)(x+5)-(x+5)(x-1)=0
Next, we'll need to multiply out the left side of the equation, then combine like terms to get it into standard form:
(2x²+10x-3x-15)-(x²-1x+5x-5)=0
Next, combine like terms:
x²+3x-10=0
Since this equation happens to be factorable, we can use factoring to solve it rather than using the quadratic formula.
It factors into:
(x+5)(x-2)=0
Now, using the Zero Product Property (if two numbers multiply to 0, one of them must be 0), we know that either x+5=0 or x-2=0
Solving each equation, we get:
x=2
x=-5

Systems of Quadratic Equations/Functions

A system of quadratic equations is a set of two equations or functions that are solved simultaneously. The solutions to the system are the values of the variables that make both equations true. Or, since each equation/function can be represented as a graph, we can think of the solutions as the points where the graphs intersect.
For example, let's say we have the following system of quadratic equations, and we're asked to solve for the values of x and y that make both equations true:
y=x2+4x-5
y=2x2+7x-15
This would essentially be the same as if we were given the two following functions, and asked to find the points of intersection:
f(x)=x2+4x-5
g(x)=2x2+7x-15

Solving Systems of Quadratic Equations

To solve a system of quadratic equations, we first need to combine the two equations into a single equation. We can do this either by using substitution or elimination. Since the system of equations above already has both equations expressing y in terms of x (y is isolated on one side of the equation), we can use either method easily. Let's start by using substitution.
Substitution Method
To use substitution, you first need to isolate y in one of the equations. Once you've done that, you can substitute the expression for y into the other equation. In our system of equations above, y is already isolated, so we can substitute the expression for y from the first equation into the second equation:
x2+4x-5=2x2+7x-15
Now we have a single equation with a single variable, so we can solve it the rest of the way by using the same methods outlined above in the section on solving single variable quadratic equations. We'll start by getting all terms on one side of the equation, so that it is equal to 0:
2x2+7x-15-(x2+4x-5)=0
Next, combine like terms:
x2+3x-10=0
Now, we can solve for x by factoring:
(x+5)(x-2)=0
Using the Zero Product Property, we can conclude that the solutions are x=-5 and x=2
Elimination Method
Let's use a different example to illustrate the elimination method. Let's say we have the following system of equations:
y=x2+4x-5
2y=4x2+14x-30
With the elimination method, we want to add or subtract one equation from the other so that one of the variables is eliminated. With quadratic equations, we generally want to eliminate the dependent variable (y), so that we're left with an equation that has only x's.
Since one equation has a y, and one has a 2y, we can't just subtract one from the other to eliminate the y's. Instead, we can multiply one of the equations by a constant so that y terms have the same coefficient. Let's multiply the first equation by 2, which now gives us the two equations:
2y=2x2+8x-10
2y=4x2+14x-30
Now, we can subtract the second equation from the first equation. By this, we mean that we'll subtract the left side of the second equation from the left side of the first equation, and the right side of the second equation from the right side of the first equation:
2y-2y=2x2+8x-10-(4x2+14x-30)
Now, combine like terms:
0=-2x2-6x+20
We can simplify this equation by dividing both sides by -2:
0=x2+3x-10
Which actually leaves us with the same equation as in our substitution example. So it will give us the same solutions, x=-5 and x=2

Linear-Quadratic Systems

Sometimes on the SAT, you may encounter a system of equations that contains one linear equation and one quadratic equation. Let's say we have the following system of equations:
y=x2+4x-5
y=x+5
Ultimately, our approach will be essentially the same as it was when we had two quadratic equations. We can use either substitution or elimination to combine the equations into a single equation with a single variable. This resulting equation will be a quadratic equation, so we can solve it by either factoring or using the quadratic formula.
By using elimination, we can subtract the second equation from the first equation to eliminate the y term:
0=x2+4x-5-(x+5)
Now, combine like terms:
0=x2+3x-10
Again, we end up with the same quadratic equation as in our previous examples, so the solutions are x=-5 and x=2
To think about this graphically, we have one function that is represented by a parabola, and one function that is represented by a line. The fact that we have two solutions means that the line intersects the parabola at two points. The x-coordinates of these points are the solutions to the system of equations. We could find the y-coordinates by plugging the x-coordinates back into either equation. Let's use the simpler equation, y=x+5, or in function notation, f(x)=x+5.
Plugging in x=-5 gives us f(-5)=-5+5=0
Plugging in x=2 gives us f(2)=2+5=7
So, the two exact coordinate points of intersection are (-5,0) and (2,7)
Let's look at what the graph of these two functions actually looks like:

Number of Solutions

We saw earlier how parabolas can have two, one, or no x-intercepts. The solutions to a quadratic equation can be thought of as the x-intercepts of the parabola, so it's also the case that a quadratic equation can have two, one, or no solutions. The number of solutions to a quadratic equation is ultimately determined by its discriminant.

The Discriminant

The discriminant of a quadratic equation is the part of the quadratic formula under the square root.
Remember, the quadratic formula is:
x=-b±b²-4ac2a
So the discriminant (the part under the square root) is:
b²-4ac

Zero Solutions (Discriminant < 0)

We know that we can't take the square root of a negative number. Since the discriminant is inside the square root, it cannot be negative, or else the equation we end up with no (real) solutions. We say "real" because in theory there are complex solutions that involve imaginary numbers, but we don't need to worry about that for the SAT. So for the purposes of the SAT, a quadratic equation has no solutions if its discriminant is negative.
Let's look at an example:
x²-4x+5=0
Linking this back to standard form (ax2+bx+c), we have a=1, b=-4, and c=5.
Plugging these values into the discriminant, we get:
(-4)2-4(1)(5)
Simplifying this, we get:
16-20=-4
Since the discriminant is negative, we know that this quadratic equation has no solutions.
Accordingly, if we graph it we see that the parabola does not intersect the x-axis at all.

One Solution (Discriminant = 0)

If the discriminant is zero, then the quadratic equation has exactly one solution. If we refer back to the quadratic formula, this makes sense, because if the discriminant is zero, our two solutions would be:
x=-b+02a and x=-b-02a
Both of these solutions end up being the same number, since adding or subtracting zero doesn't change an expression. So, the one solution is:
x=-b2a
You might recall that is is the same formula we use to find the x-coordinate of the vertex of a parabola. This makes sense, because when there is only one solution, that means the parabola only intersects the x-axis at one point, which is the vertex.
Let's look at an example:
x²-4x+4=0
Linking this back to standard form (), we have a=1, b=-4, and c=4.
Plugging these values into the discriminant, we get:
(-4)2-4(1)(4)
Simplifying this, we get:
16-16=0
Since the discriminant is zero, we know that this quadratic equation has exactly one solution.
When a quadratic equation has exactly one solution, it can be factored as a binomial squared. For example, the example above can be factored as (x-2)²=0
Hence, there is only one solution, x=2.
Now let's take a look at the graph of this quadratic equation:
As you can see, the parabola just glances off the x-axis at one point, which is the vertex.

Two Solutions (Discriminant > 0)

If the discriminant is positive, then the quadratic equation has two solutions. This means that the parabola intersects the x-axis at two points.
Again, this makes sense when we look at the quadratic formula. If the discriminant is positive, when we take its square root we get a positive number. This means that the "plus or minus" part of the quadratic formula will give us two different numbers.
Let's look at an example:
x²-4x+2=0
Here, the discriminant is:
(-4)2-4(1)(2)
Simplifying this, we get:
16-8=8
Since the discriminant is positive, we know that this quadratic equation has two solutions.
Here is what the graph of this quadratic equation looks like:
As you can see, the parabola intersects the x-axis at two points.

Parabola Symmetry

All parabolas are symmetric. If you draw a vertical line through the vertex of the parabola, the parabola is symmetric on both sides of that line.

Axis of Symmetry

The vertical line through the vertex of the parabola is called the axis of symmetry. It is shown in the graph below.

Why is this important?

When we are given certain points on a parabola, knowledge of its symmetry can sometimes help us infer the coordinates of other points on the parabola. Often on the SAT, we are given two points with the same y-coordinate (like the two x-intercepts). Because a parabola is symmetric, the two x-intercepts are equidistant from the axis of symmetry, and therefore the x-coordinate of the vertex will fall halfway between them. Or, in other words, the x-coordinate of the vertex is the average of the x-coordinates of the two x-intercepts.
Looking at the graph above, we can see that the two x-intercepts are -1 and 3. The average of these two numbers (aka half way between them) is 1. We can calculate this by adding the two x-coordinates and dividing by 2:
-1+32=1
Therefore, the x-coordinate of the vertex is 1.
Without needing to know the actual equation of the parabola, we were able to find the x-coordinate of the vertex just by knowing the two x-intercepts.
But since we do have the equation for this parabola, we can double check our answer by using the equation from earlier for getting the x-coordinate of the vertex from standard form: x=-b2a
x=-(-2)2(1)=1
We get the same answer both ways, demonstrating the validity of both approaches.
Note that this approach isn't only limited to when we know the two x-intercepts. If we know any two points on the parabola with the same y-coordinate, we can infer that the x-coordinate of the vertex must fall halfway between them.
For example, let's look at the graph below.
If we were told that f(-1) = f(3), this means that the y-coordinate when x = -1 is the same as the y-coordinate when x = 3. This is depicted by the red dots in the graph above. Since the parabola is symmetric, the x-coordinate of the vertex must fall halfway between -1 and 3.
Taking the average of -1 and 3, we again get: -1+32=1
Therefore, just by knowing that f(-1) = f(3), we were able to infer that the x-coordinate of the vertex is 1, without knowing anything else about the parabola or its equation.
One other way we could apply this principle of symmetry, although this comes up less often on the SAT, is if we know the x-coordinate of the vertex and one other point on the parabola. From this, we can infer that there is another point on the parabola that has the same y-coordinate as the given point, and has an x-coordinate that is the same distance from the axis of symmetry as the given point.
For example, using the same graph above, if we were told that f(-1) = 2, and that the vertex had an x-coordinate of 1, we can infer that there is also a point on the parabola at (3, 2). This is because 3 and -1 are equidistant from the axis of symmetry (x = 1), and therefore have the same y-coordinate.