Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Polynomial Functions and Complex Zeros

Lesson ~11 min read 8 MCQs

In simple terms: In simple terms, this topic is about how a polynomial's equation reveals where its graph crosses the x-axis, how it behaves at those points, and whether the graph has special symmetries.

Why this matters

Imagine you're designing a new roller coaster for an amusement park in Dallas. The path of the coaster—its thrilling hills and stomach-dropping valleys—can be modeled by a polynomial function. The highest peaks and lowest dips are its local extrema, but what about the points where the coaster is exactly at ground level? These are the moments of calm before the next big climb or drop.

In the language of math, these "ground level" points are the zeros of the function. Understanding them is crucial. How many times does the coaster return to ground level? Does it pass straight through, or does it just touch the ground for a moment before climbing again? These questions are not just for coaster designers; they're at the heart of understanding how polynomial functions work. In this lesson, we'll connect a polynomial's algebraic formula to the story its graph tells.

A roller coaster's path modeled by a polynomial, showing zeros as ground-level points.

Concept overview

flowchart TD
    A[Start with Polynomial p(x)] --> B{Is it factored?};
    B -- Yes --> C[List each factor];
    B -- No --> B_sub[Factor p(x)] --> C;
    C --> D[Set each factor to 0 to find zeros 'a'];
    D --> E[Find multiplicity 'n' for each zero];
    E --> F{Is 'n' odd or even?};
    F -- Odd --> G[Graph CROSSES x-axis at x=a];
    F -- Even --> H[Graph TOUCHES x-axis at x=a];
    G --> I[End Analysis];
    H --> I;
This diagram shows a flowchart for analyzing polynomial zeros. It starts with a polynomial, guides the user to factor it, find the zeros and their multiplicities, and then determine if the graph crosses or touches the x-axis at each zero based on whether the multiplicity is odd or even.

Core explanation

Hello everyone! Let's dive into one of the most powerful ideas in precalculus: the relationship between a polynomial's algebraic structure and its graphical behavior.

What is a "Zero" of a Polynomial?

A zero of a polynomial p(x) is simply any number a that makes the function's output equal to zero. In other words, p(a) = 0. We also call these numbers roots of the equation p(x) = 0.

If a zero a is a real number, it has a very clear graphical meaning: it's an x-intercept. It's a point where the graph of y = p(x) crosses or touches the x-axis.

The connection to factors is direct. Thanks to the Factor Theorem, we know that if a is a real zero of p(x), then (x - a) must be a factor of the polynomial.

For example, if we know x = 2 is a zero of a polynomial, then (x - 2) is one of its factors. If x = -5 is a zero, then (x - (-5)) or (x + 5) is a factor.

Multiplicity: How a Graph Behaves at its Zeros

Sometimes, a factor appears more than once. For instance, in the polynomial p(x) = (x - 4)(x - 4), the factor (x - 4) is repeated. We can write this as p(x) = (x - 4)^2.

The number of times a factor is repeated is called the multiplicity of the corresponding zero. In this case, the zero x = 4 has a multiplicity of 2.

Multiplicity tells us a story about how the graph behaves at that specific x-intercept.

  • Odd Multiplicity (1, 3, 5, ...)
    The graph crosses the x-axis at the zero. It passes from positive to negative, or vice-versa. Think of it like a soccer ball going straight through the goal.
  • Even Multiplicity (2, 4, 6, ...)
    The graph touches the x-axis and turns around. It is tangent to the axis at that point. The function's values don't change sign. Imagine a basketball hitting the rim of the hoop and bouncing back up.
Odd multiplicity zeros cross the x-axis, while even multiplicity zeros touch and turn.

Let's look at p(x) = (x + 1)(x - 3)^2.

  • At x = -1, the zero has a multiplicity of 1 (odd). The graph will cross the x-axis.
  • At x = 3, the zero has a multiplicity of 2 (even). The graph will touch the x-axis and turn around.

The World of Complex Zeros

What if a polynomial doesn't have enough real zeros to match its degree? For example, f(x) = x^2 + 4. This parabola never touches the x-axis. Does it have zeros?

Yes! They just aren't real numbers. If we solve x^2 + 4 = 0, we get x^2 = -4, so x = ±√(-4), which is x = ±2i. These are complex zeros.

The Fundamental Theorem of Algebra is a cornerstone of math. It states that a polynomial of degree n has exactly n complex zeros, as long as we count multiplicities. This is a guarantee! A degree 5 polynomial will have 5 zeros, though some might be real, some complex, and some might be repeated.

There's a helpful rule for complex zeros: The Complex Conjugate Root Theorem states that if a polynomial has real coefficients, and if a + bi is a zero, then its conjugate, a - bi, must also be a zero. They always come in pairs.

So, if a friend tells you they found a polynomial with real coefficients that has x = 3 - i as its only complex zero, you know they've made a mistake. If 3 - i is a zero, 3 + i must be one too.

Even and Odd Functions: Uncovering Symmetry

Some functions have beautiful, predictable symmetry. We classify them as even, odd, or neither.

Even Functions:

  • Graphically
    An even function is symmetric with respect to the y-axis. It's a perfect mirror image on the left and right sides of the y-axis. The classic example is f(x) = x^2.
  • Analytically
    The rule is f(-x) = f(x). If you plug in -x for every x and simplify, you get the exact same original function back. For f(x) = 7x^4 - 2x^2 + 1: f(-x) = 7(-x)^4 - 2(-x)^2 + 1 = 7x^4 - 2x^2 + 1 = f(x). It's an even function. Notice all the powers of x are even (4, 2, and the constant term can be thought of as 1x^0).

Odd Functions:

  • Graphically
    An odd function is symmetric with respect to the origin (0,0). If you rotate the graph 180 degrees around the origin, it lands perfectly back on itself. A great example is f(x) = x^3.
  • Analytically
    The rule is f(-x) = -f(x). If you plug in -x, you get the negative of the original function. For g(x) = 2x^3 - 5x: g(-x) = 2(-x)^3 - 5(-x) = -2x^3 + 5x = -(2x^3 - 5x) = -g(x). It's an odd function. Notice all the powers of x are odd (3 and 1).

Most functions, like h(x) = x^2 + x, are neither even nor odd because they don't satisfy either symmetry rule.

Finding Degree from a Table

Finally, a neat trick. If you have a table of values for a polynomial where the x-values are spaced out evenly (e.g., x = 0, 1, 2, 3...), you can find its degree without even knowing the equation. You calculate the "finite differences."

  1. Find the differences between consecutive y-values. This is the "first difference."
  2. If they aren't all the same, find the differences of those differences. This is the "second difference."
  3. Keep going. The degree of the polynomial is n if the n-th differences are the first set to be constant (and not zero).

If the 3rd differences are the first constant set, the polynomial is degree 3.

Worked examples

Let's put these concepts into practice. Follow along, and make sure you understand the why behind each step.


Example 1

Analyzing a Factored Polynomial

Problem: Consider the polynomial function p(x) = x(x - 3)^2(x + 4). Find all real zeros, state their multiplicities, and describe the behavior of the graph at each zero.

Solution:

  1. 1
    Identify the factors
    The function is already factored for us, which is a huge help. The factors are x, (x - 3)^2, and (x + 4).
  2. 2
    Find the zeros
    We set each factor equal to zero to find the corresponding zeros.
    • x = 0 → The first zero is a_1 = 0.
    • x - 3 = 0 → The second zero is a_2 = 3.
    • x + 4 = 0 → The third zero is a_3 = -4.
  3. 3
    Determine the multiplicity of each zero
    We look at the exponent on each factor.
    • For the zero x = 0 (from the factor x^1), the multiplicity is 1.
    • For the zero x = 3 (from the factor (x - 3)^2), the multiplicity is 2.
    • For the zero x = -4 (from the factor (x + 4)^1), the multiplicity is 1.
  4. 4
    Describe the graph's behavior
    Now we use the multiplicity to predict the graph's action at each x-intercept.
    • At x = 0, the multiplicity is 1 (odd). The graph will cross the x-axis.
    • At x = 3, the multiplicity is 2 (even). The graph will touch the x-axis and turn around.
    • At x = -4, the multiplicity is 1 (odd). The graph will cross the x-axis.

Key Takeaway: By looking at the factored form, we can sketch a surprisingly accurate picture of the polynomial's graph without plotting a single point.


Example 2

Building a Polynomial from its Zeros

Problem: Find a polynomial function f(x) of the lowest possible degree with real coefficients that has zeros at x = 5 and x = -2i.

Solution:

  1. 1
    Account for all zeros
    We are given two zeros: 5 and -2i.
    • This is the most common trap! The problem states the polynomial has real coefficients. The Complex Conjugate Root Theorem tells us that if a complex number a - bi is a zero, its conjugate a + bi must also be a zero.
    • So, if -2i (or 0 - 2i) is a zero, then its conjugate +2i (or 0 + 2i) must also be a zero.
    • Our full list of zeros is: 5, -2i, and 2i. This means the lowest possible degree is 3.
  2. 2
    Convert zeros to factors
    Remember, a zero a corresponds to a factor (x - a).
    • x = 5(x - 5)
    • x = -2i(x - (-2i)) = (x + 2i)
    • x = 2i(x - 2i)
  3. 3
    Multiply the factors
    Now, we multiply these factors together to build the polynomial. It's easiest to multiply the complex conjugate factors first.
    • f(x) = (x - 5) * (x + 2i)(x - 2i)
    • Let's multiply (x + 2i)(x - 2i). This is a difference of squares: x^2 - (2i)^2.
    • Since i^2 = -1, this becomes x^2 - (4 * -1) = x^2 + 4. Notice how the i's have vanished! This always happens when you multiply complex conjugates.
  4. 4
    Finish the multiplication
    • f(x) = (x - 5)(x^2 + 4)
    • Now, we distribute (or FOIL): x(x^2 + 4) - 5(x^2 + 4)
    • f(x) = x^3 + 4x - 5x^2 - 20
  5. 5
    Write in standard form
    • f(x) = x^3 - 5x^2 + 4x - 20

This is a valid polynomial that meets all the requirements.

Graph of p(x) = x(x - 3)^2(x + 4) showing behavior at each zero.

Try it yourself

Time to test your skills. No peeking at the answers!

  1. 1
    Problem
    A degree 4 polynomial g(x) has real coefficients. It has zeros at x = 0 (with multiplicity 2) and x = 1 - 3i. Write a possible function for g(x) in factored form.
    • Hint 1
      What does the degree of 4 tell you about the total number of zeros you need to find?
    • Hint 2
      The function has real coefficients. What does that imply about the complex zero you were given?
  2. 2
    Problem
    Is the function h(x) = -3x^5 + 9x even, odd, or neither? Justify your answer algebraically.
    • Hint: Carefully calculate h(-x). Pay close attention to how the negative signs interact with the odd exponent. Does the result look like h(x) or -h(x)?
Graph of g(x) = x^2 * (x^2 - 2x + 10) illustrating zeros and their multiplicities.