Finding Zeros Roots Of A Polynomial

Download as PDF

Ever wondered where a curving graph crosses the horizontal axis? Those special points are called zeros or roots, and they represent crucial solutions in math and science. This lesson will equip you with the essential algebraic techniques to find them for any polynomial.

Finding Zeros Roots Of A Polynomial — an original Algebra911 reference diagram defining finding zeros roots of a polynomial with its key formula and a worked example.
Finding the Zeros and Roots of a Polynomial

What Are Zeros and Roots of a Polynomial?

The zeros of a polynomial are the input values (usually for x) that make the polynomial's output equal to zero. In simpler terms, if you have a polynomial function, like f(x), the zeros are all the x-values for which f(x)=0. These values are also commonly called the roots of the polynomial equation, the solutions to the equation, or the x-intercepts of the polynomial's graph.

Think about it visually. When you draw the graph of a polynomial, it might swoop up and down, creating a curve. Wherever that curve touches or crosses the horizontal x-axis, the y-value at that point is 0. The x-coordinate of that point is a zero of the polynomial.

  • If f(c)=0, then c is a zero of the function f(x).
  • If f(c)=0, then c is a root of the equation f(x)=0.
  • If f(c)=0, then (c,0) is an x-intercept of the graph of f(x).

For example, consider the simple linear polynomial f(x)=x3. To find its zero, we set the function equal to zero: x3=0. Solving for x gives us x=3. So, 3 is the zero of the polynomial. If you graph the line y=x3, you'll see it crosses the x-axis right at the point (3,0).

The Zero Product Property: Your Secret Weapon

Before we can start solving complex polynomials, we need a powerful tool in our algebraic toolkit: the Zero Product Property. This property is simple but is the fundamental concept behind finding roots by factoring.

The property states that if the product of two or more factors is zero, then at least one of those factors must be zero.

If ab=0, then a=0 or b=0 (or both).

This makes perfect sense—the only way to get zero by multiplication is if one of the numbers you're multiplying is zero itself. How does this help with polynomials? If we can break a polynomial down into a product of simpler factors (a process called factoring), we can use this property to find the roots easily.

For instance, imagine a polynomial is already factored for you, like (x5)(x+2)=0. Here, our a is (x5) and our b is (x+2). According to the Zero Product Property, for their product to be zero, one of them must be zero.

  • Either x5=0, which gives us x=5.
  • Or x+2=0, which gives us x=2.

So, the roots of this equation are 5 and 2. The main challenge, therefore, isn't using the property itself, but getting the polynomial into that nice, factored form.

How to Find Zeros by Factoring out the GCF

The first and most important factoring technique is to look for a Greatest Common Factor (GCF). The GCF is the largest term that divides evenly into every term of the polynomial. Factoring out the GCF simplifies the polynomial and is often the first step toward finding its zeros.

Here is the general process:

  1. Set the polynomial equal to zero.
  2. Identify the GCF of all the terms. This includes the largest number that divides all coefficients and the lowest power of any variable common to all terms.
  3. Factor the GCF out of the polynomial by dividing each term by the GCF. Write the polynomial as the GCF multiplied by the remaining expression in parentheses.
  4. Apply the Zero Product Property to the factors to find the roots.
Example 1

Find the zeros of the polynomial f(x)=3x2+12x.

Step 1: Set the function to zero.
3x2+12x=0

Step 2: Find the GCF.
The coefficients are 3 and 12. The greatest number that divides both is 3.
The variable parts are x2 and x. The lowest power of x present in both is x1, or just x.
Therefore, the GCF is 3x.

Step 3: Factor out the GCF.
Divide each term by 3x:
3x23x=x
12x3x=4
Now, rewrite the equation in factored form: 3x(x+4)=0

Step 4: Use the Zero Product Property.
We have two factors: 3x and (x+4). Set each one equal to zero to find the roots.
Factor 1: 3x=0x=0
Factor 2: x+4=0x=4
The zeros of the polynomial are 0 and 4.

Solving Quadratic Trinomials by Factoring

A very common type of polynomial you'll encounter is the quadratic trinomial, which has the form ax2+bx+c. When a=1, factoring is a straightforward process of finding two numbers that satisfy two conditions.

To factor a trinomial of the form x2+bx+c, you need to find two integers that:

  1. Multiply to give the constant term, c.
  2. Add to give the coefficient of the x-term, b.

Once you find these two numbers, let's call them p and q, the factored form of the trinomial will be (x+p)(x+q). From there, you can use the Zero Product Property to find the roots.

Example 2

Find the roots of the equation x22x15=0.

Step 1: The equation is already set to zero.
We need to factor the trinomial x22x15. Here, b=2 and c=15.

Step 2: Find two numbers that multiply to c and add to b.
We need two numbers that multiply to 15 and add to 2. Let's list the factor pairs of 15:

  • 1 and 15 (Sum: 14)
  • 1 and 15 (Sum: 14)
  • 3 and 5 (Sum: 2) <-- This is our pair!
  • 3 and 5 (Sum: 2)

The numbers are 3 and 5.

Step 3: Write the polynomial in factored form.
Using our numbers, the factored form is (x+3)(x5)=0.

Step 4: Use the Zero Product Property.
Set each factor equal to zero.
Factor 1: x+3=0x=3
Factor 2: x5=0x=5
The roots of the equation are 3 and 5.

Factoring when a is not 1 involves more complex methods like factoring by grouping or the 'AC method', but the final goal is always the same: to break the polynomial into a product of simpler factors.

What if Factoring Fails? The Quadratic Formula

Sometimes, a quadratic polynomial ax2+bx+c cannot be factored easily using integers. You might spend a long time looking for the right pair of numbers only to find they don't exist. In these cases, and for any quadratic equation in general, you can use a powerful tool that always works: the Quadratic Formula.

For any quadratic equation written in the standard form ax2+bx+c=0, where a0, the solutions for x are given by the formula:

x=b±b24ac2a

To use it, you simply identify the values of a, b, and c from your equation and substitute them into the formula. The ± symbol (plus-minus) means you'll have to perform the calculation twice: once with a plus and once with a minus, which will typically give you two distinct roots.

Example 3

Find the zeros of f(x)=2x2+5x4.

Step 1: Set the function to zero.
2x2+5x4=0. Trying to factor this would be very difficult.

Step 2: Identify a, b, and c.
Comparing our equation to ax2+bx+c=0:

  • a=2
  • b=5
  • c=4

Step 3: Substitute these values into the quadratic formula.
x=(5)±(5)24(2)(4)2(2)

Step 4: Simplify the expression carefully.
First, simplify inside the square root (the discriminant):
x=5±25(32)4x=5±25+324x=5±574

Step 5: Write the two distinct roots.
Since 57 is not a perfect square, we leave it under the radical for an exact answer. The two roots are:
x1=5+574
x2=5574
These are the exact zeros of the polynomial. You could use a calculator to find their approximate decimal values (x0.637 and x3.137).

Key formulas for finding zeros roots of a polynomial by Algebra911.
Key formulas for finding zeros roots of a polynomial by Algebra911.

Common Mistakes When Finding Roots

Finding zeros is a multi-step process, and there are a few common pitfalls that can trip students up. Being aware of these can help you avoid them in your own work.

  • Forgetting to Set the Equation to Zero: The Zero Product Property only works for an equation equal to 0. If you have x2x=6, you cannot just factor the left side. You must first rewrite it as x2x6=0 before you can factor and solve.
  • Dividing by a Variable: It can be tempting to simplify an equation like x25x=0 by dividing both sides by x to get x5=0, which gives x=5. However, you just lost a solution! By dividing by x, you assumed x isn't zero. The correct method is to factor out the GCF: x(x5)=0, which gives the roots x=0 and x=5. Never divide by a variable unless you know it cannot be zero.
  • Sign Errors in the Quadratic Formula: Be very careful with negative signs. When the formula asks for b and your b value is already negative (e.g., b=3), then b becomes (3)=+3. Similarly, when calculating b24ac, a negative c value will turn the subtraction into an addition.
  • Confusing the Factor with the Root: If you find that (x+7) is a factor of a polynomial, remember that the corresponding root comes from setting the factor to zero: x+7=0, which gives x=7. The root has the opposite sign of the number in the factor.

Quick Summary: Your Polynomial Toolkit

Finding the zeros of a polynomial is a core skill in algebra. Your general strategy should be to set the polynomial equal to zero and then solve for the variable. Here is a summary of the methods we've discussed.

The General Process

  1. Write the polynomial equation in standard form and set it equal to 0.
  2. Begin by attempting to factor the polynomial. Always look for a Greatest Common Factor (GCF) first.
  3. If it's a trinomial, try to factor it into two binomials.
  4. Once the polynomial is fully factored, apply the Zero Product Property by setting each factor equal to zero and solving for the variable.
  5. If you have a quadratic polynomial that you cannot factor, use the Quadratic Formula as your all-purpose tool.

Method Comparison

This table can help you decide which method to use for quadratic polynomials.

MethodWhen to UseExample Equation
Factoring (GCF)When all terms share a common factor, especially if there is no constant term.4x216x=0
Factoring (Trinomial)For trinomials ax2+bx+c=0 where you can quickly find the factors. Best when a=1.x2+6x+8=0
Quadratic FormulaFor any quadratic equation, especially when factoring is difficult or the roots are not integers.3x27x1=0

Frequently Asked Questions

What is the difference between a zero, a root, and an x-intercept?

In the context of algebra, these terms are often used interchangeably. A 'zero' refers to the input of a function that produces an output of zero. A 'root' is a solution to a polynomial equation set to zero. An 'x-intercept' is the point on a graph where the function crosses the x-axis. For any polynomial, these all correspond to the same x-values.

Can a polynomial have no real roots?

Yes. A polynomial might not have any real roots if its graph never touches or crosses the x-axis. For example, the graph of f(x)=x2+4 is a parabola that opens upwards with its lowest point at (0,4), so it never touches the x-axis and has no real zeros.

How many roots can a polynomial have?

According to the Fundamental Theorem of Algebra, a polynomial will have a number of roots equal to its degree. For example, a quadratic (degree 2) has 2 roots and a cubic (degree 3) has 3 roots. However, some roots might be complex numbers or be repeated (multiplicity).

Why do I have to set the equation to zero before solving?

You must set the equation to zero to use the Zero Product Property, which is our main tool. This property states that if a product equals zero, one of the factors must be zero. If the product equals any other number, like 6, we can't make any conclusions about the individual factors.

Is the quadratic formula always better than factoring?

Not necessarily. Factoring is often much faster and more intuitive if the polynomial is simple. The quadratic formula is more powerful because it works for every single quadratic equation, but it can be slower and involves more calculations, which can lead to errors.

What if my polynomial has a degree higher than 2, like a cubic?

The same principles apply. You should always start by setting the equation to zero and looking for a GCF. Methods like factoring by grouping can work for some four-term cubic polynomials. For higher-degree polynomials, there are more advanced techniques like the Rational Root Theorem.

What does the part under the square root in the quadratic formula tell me?

The expression b24ac is called the discriminant. It tells you about the nature of the roots without fully solving the equation. If it's positive, you have two distinct real roots. If it's zero, you have exactly one repeated real root. If it's negative, you have two complex roots.