Graphing polynomial functions — zeroes, end behavior, turning points

medium CBSE 4 min read

Question

How do we sketch the graph of a polynomial function without plotting dozens of points? Use the polynomial p(x)=x33x2x+3p(x) = x^3 - 3x^2 - x + 3 to demonstrate the process.

(CBSE 10 Board pattern)


Solution — Step by Step

Set p(x)=0p(x) = 0: x33x2x+3=0x^3 - 3x^2 - x + 3 = 0

Try x=1x = 1: 131+3=01 - 3 - 1 + 3 = 0. Yes, x=1x = 1 is a root.

Factor out (x1)(x - 1) by division: p(x)=(x1)(x22x3)=(x1)(x3)(x+1)p(x) = (x - 1)(x^2 - 2x - 3) = (x - 1)(x - 3)(x + 1)

Zeroes: x=1,1,3x = -1, 1, 3. These are the points where the graph crosses the x-axis.

The leading term is x3x^3 (odd degree, positive coefficient).

  • As x+x \to +\infty, p(x)+p(x) \to +\infty
  • As xx \to -\infty, p(x)p(x) \to -\infty

So the graph goes from bottom-left to top-right.

Maximum number of turning points = degree 1=2- 1 = 2.

Take p(x)=3x26x1=0p'(x) = 3x^2 - 6x - 1 = 0. Using the quadratic formula:

x=6±36+126=6±486=1±233x = \frac{6 \pm \sqrt{36 + 12}}{6} = \frac{6 \pm \sqrt{48}}{6} = 1 \pm \frac{2\sqrt{3}}{3}

So approximately x0.15x \approx -0.15 and x2.15x \approx 2.15. These are the peaks and valleys.

p(0)=000+3=3p(0) = 0 - 0 - 0 + 3 = 3. The y-intercept is (0,3)(0, 3).

Now connect the dots: start from bottom-left, cross x-axis at x=1x = -1, rise to a local max near x0.15x \approx -0.15, fall to a local min near x2.15x \approx 2.15, cross at x=1x = 1, dip down, cross at x=3x = 3, then rise to top-right.

flowchart TD
    A["Given polynomial p(x)"] --> B["Step 1: Find zeroes - set p(x) = 0"]
    B --> C["Step 2: Check leading term"]
    C --> D{"Degree odd or even?"}
    D -- Odd --> E["Opposite ends: one up, one down"]
    D -- Even --> F["Same ends: both up or both down"]
    E --> G["Step 3: Find p'(x) = 0 for turning points"]
    F --> G
    G --> H["Step 4: Find y-intercept p(0)"]
    H --> I["Step 5: Plot zeroes, turning points, y-intercept"]
    I --> J["Connect smoothly following end behavior"]

Why This Works

A polynomial of degree nn can cross the x-axis at most nn times and can turn at most n1n - 1 times. The leading term dominates the behavior for very large and very small values of xx, so it determines the “arms” of the graph. Between the zeroes, the sign of p(x)p(x) alternates (for simple roots), which tells us whether the curve is above or below the x-axis.

By combining zeroes, end behavior, turning points, and the y-intercept, we have enough information to sketch an accurate shape without plotting a large number of points.


Alternative Method

Instead of calculus (finding p(x)p'(x)), you can use a sign analysis table:

Interval(x+1)(x+1)(x1)(x-1)(x3)(x-3)p(x)p(x) sign
x<1x < -1----
1<x<1-1 < x < 1++--++
1<x<31 < x < 3++++--
x>3x > 3++++++++

This tells you exactly where the graph is above or below the x-axis — no derivatives needed.

For CBSE 10, you will not need calculus to find turning points. The sign analysis method is sufficient and expected. Just know the zeroes, the end behavior, and where the curve is positive vs negative.


Common Mistake

Students often forget that a repeated root (like a double root) means the graph touches the x-axis but does not cross it. For example, p(x)=(x2)2(x+1)p(x) = (x-2)^2(x+1) touches the x-axis at x=2x = 2 and crosses at x=1x = -1. If you treat all roots the same, your sketch will be wrong.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next