Value Of A Polynomial: How To Evaluate P(x)

#Algebra
TL;DR
The value of a polynomial $P(x)$ at $x = a$ is the number you get by substituting $a$ for every $x$ and simplifying, written $P(a)$. Follow the order of operations carefully, especially with negative and fractional inputs, and remember one shortcut: $P(a)$ is also the remainder when $P(x)$ is divided by $(x - a)$.
BT
Bhanzu TeamLast updated on September 10, 20269 min read

What Is The Value Of A Polynomial?

The value of a polynomial $P(x)$ at a point $x = a$ is the number you get when you replace every $x$ with $a$ and simplify. It is written $P(a)$. A polynomial is an expression built from a variable and constants using only addition, subtraction, and whole-number powers, such as $P(x) = 2x^3 - 3x^2 + 4x - 5$.

Think of a polynomial as a small machine. You feed it one input number, it runs that number through its powers and coefficients, and it returns one output number. That output is the value of the polynomial at that input.

For $P(x) = 2x^3 - 3x^2 + 4x - 5$, the value at $x = 2$ is $P(2)$, the value at $x = -2$ is $P(-2)$, and so on. Each input has exactly one value, which is why a polynomial defines a function and traces a single curve on a graph.

How Do You Find The Value Of A Polynomial?

To find the value of a polynomial at $x = a$, substitute $a$ for every $x$, then simplify using the order of operations: powers first, then multiplication, then addition and subtraction.

Example 1: Find $P(2)$ for $P(x) = 2x^3 - 3x^2 + 4x - 5$.

Substitute $x = 2$:

$$P(2) = 2(2)^3 - 3(2)^2 + 4(2) - 5$$

Apply the powers before anything else:

$$P(2) = 2(8) - 3(4) + 4(2) - 5$$

Now multiply each term:

$$P(2) = 16 - 12 + 8 - 5$$

Add and subtract left to right:

$$P(2) = 7$$

The value of the polynomial at $x = 2$ is $7$. Written as a point on its graph, the curve passes through $(2, 7)$.

What Are Some Worked Examples With Negative And Fractional Inputs?

Whole numbers are the easy case. The value of a polynomial at a negative or fractional input is where most errors appear, so it is worth slowing down.

Example 2: Find $P(-2)$ for $P(x) = 2x^3 - 3x^2 + 4x - 5$.

Substitute $x = -2$, keeping each negative inside brackets:

$$P(-2) = 2(-2)^3 - 3(-2)^2 + 4(-2) - 5$$

Evaluate the powers of the negative first. Note that $(-2)^3 = -8$ but $(-2)^2 = +4$:

$$P(-2) = 2(-8) - 3(4) + 4(-2) - 5$$

Multiply:

$$P(-2) = -16 - 12 - 8 - 5$$

Add and subtract:

$$P(-2) = -41$$

Example 3: Find $P\left(\tfrac{1}{2}\right)$ for $P(x) = 2x^3 - 3x^2 + 4x - 5$.

Substitute $x = \tfrac{1}{2}$:

$$P\left(\tfrac{1}{2}\right) = 2\left(\tfrac{1}{2}\right)^3 - 3\left(\tfrac{1}{2}\right)^2 + 4\left(\tfrac{1}{2}\right) - 5$$

Raise the fraction to each power, so $\left(\tfrac{1}{2}\right)^3 = \tfrac{1}{8}$ and $\left(\tfrac{1}{2}\right)^2 = \tfrac{1}{4}$:

$$P\left(\tfrac{1}{2}\right) = 2 \cdot \tfrac{1}{8} - 3 \cdot \tfrac{1}{4} + 4 \cdot \tfrac{1}{2} - 5 = \tfrac{1}{4} - \tfrac{3}{4} + 2 - 5$$

Combine:

$$P\left(\tfrac{1}{2}\right) = -\tfrac{1}{2} - 3 = -\tfrac{7}{2}$$

Final answer: $P\left(\tfrac{1}{2}\right) = -\tfrac{7}{2}$, which is $-3.5$.

How Does The Remainder Theorem Connect To The Value Of A Polynomial?

There is a second way to read $P(a)$ that saves real work. The remainder theorem says that when a polynomial $P(x)$ is divided by $(x - a)$, the remainder is exactly $P(a)$.

So the value of a polynomial at $x = a$ and the remainder on dividing by $(x - a)$ are the same number. For $P(x) = 2x^3 - 3x^2 + 4x - 5$, dividing by $(x - 2)$ leaves a remainder of $7$, because $P(2) = 7$.

This link runs both ways. To find a remainder, you can skip the long division and just evaluate. To check a value, you can divide. The idea extends to the factor theorem: if the value comes out as $0$, the remainder is $0$, so $(x - a)$ divides $P(x)$ exactly and is a factor.

What Is Horner's Method For Evaluating A Polynomial?

Substitution is clear, but for a high-degree polynomial it repeats a lot of multiplication. Horner's method rewrites the polynomial so you never raise anything to a power at all. It only ever multiplies by the input and adds the next coefficient.

Rewrite $P(x) = 2x^3 - 3x^2 + 4x - 5$ in nested form:

$$P(x) = \big((2x - 3)x + 4\big)x - 5$$

Read from the inside out with $x = 2$:

$$2(2) - 3 = 1, \qquad 1(2) + 4 = 6, \qquad 6(2) - 5 = 7$$

The result is $P(2) = 7$, matching the substitution answer. The same steps written as a table (the layout used in synthetic division) take the coefficients $2, -3, 4, -5$ and carry a running total:

Table: Horner's method for $P(x) = 2x^3 - 3x^2 + 4x - 5$ at $x = 2$.

Coefficient

$2$

$-3$

$4$

$-5$

Bring down / multiply by 2 and add

$2$

$2(2)-3=1$

$1(2)+4=6$

$6(2)-5=7$

The final entry, $7$, is the value. For a cubic this is three multiplications instead of the six that direct substitution needs, and the saving grows with the degree, which is why calculators and computers evaluate polynomials this way.

What Does It Mean When The Value Of A Polynomial Is Zero?

When the value of a polynomial at $x = a$ comes out as $0$, that input $a$ is called a zero or root of the polynomial. Zeros are the inputs where the curve crosses the $x$-axis, so finding them is the heart of solving polynomial equations.

Take $P(x) = x^2 - 5x + 6$. Testing $x = 2$:

$$P(2) = (2)^2 - 5(2) + 6 = 4 - 10 + 6 = 0$$

Since the value is $0$, $x = 2$ is a zero of $P(x)$, and by the factor theorem $(x - 2)$ is a factor. Testing values is often the first step in hunting for the zeros of a polynomial before factoring the rest.

Why Do We Evaluate Polynomials?

Evaluating a polynomial looks like a drill, but every larger idea in algebra rests on it.

  • Graphing. A curve is nothing but a long list of values. To plot $y = P(x)$, you evaluate $P$ at many inputs and join the points, exactly what a graphing tool does automatically.

  • Finding roots. Solving $P(x) = 0$ means searching for the inputs whose value is zero. Checking candidate values is how factoring, the factor theorem, and numerical root-finders all begin.

  • Modelling. When a polynomial stands for a real quantity, such as the height of a thrown ball after $t$ seconds, its value at a specific input is the actual answer you want: the height at that moment.

The single skill of substituting a number and simplifying is the bridge between a polynomial as a symbol and a polynomial as a description of something real.

Who Discovered The Method For Evaluating A Polynomial?

The efficient way to evaluate a polynomial carries an English name, but the idea travelled a long way to reach it.

Two names sit behind the modern account:

  • Qin Jiushao (c. 1202–1261, China) described the nested-evaluation algorithm around 1247, centuries ahead of Europe.

  • William George Horner (1786–1837, England) published the method in 1819, and it has carried his name in Western textbooks ever since.

Where Is The Value Of A Polynomial Used In The Real World?

The plain act of plugging a number into a polynomial runs quietly under a wide range of technology.

  • Computer graphics and animation: smooth curves and surfaces are polynomial (Bézier) functions, and every frame evaluates them at many inputs to place each point on screen.

  • Physics and engineering: projectile height, stopping distance, and beam deflection are modelled by polynomials whose value at a given time or position is the measurement engineers need.

  • Calculators and computers: functions like sine and the exponential are approximated by polynomials, then evaluated with Horner's method millions of times a second.

  • Finance: the present and future value of a stream of payments is a polynomial in the interest-rate factor, evaluated to price bonds and loans.

One small skill, substitute and simplify, sits inside screens, bridges, calculators, and interest calculations alike. Mathematics is the shared language under fields that look nothing like each other.

What Are The Most Common Value Of A Polynomial Mistakes?

Three slips account for most lost marks when evaluating a polynomial, and all three are about order and signs rather than hard arithmetic.

Multiplying the coefficient in before applying the exponent.

Where it slips in:

A student evaluates $4x^2$ at $x = 3$ and writes $(4 \cdot 3)^2 = 144$, treating the coefficient as part of the base.

Don't do this:

Do not raise the coefficient to the power. The exponent attaches only to the variable.

The correct way:

Apply the power first, then multiply by the coefficient: $4(3)^2 = 4 \cdot 9 = 36$.

Mishandling the exponent of a negative input.

Where it slips in:

Evaluating at a negative number, a student writes $(-2)^3 = 8$ or $(-2)^2 = -4$, losing track of the sign.

Don't do this:

Do not guess the sign. An even power of a negative is positive; an odd power is negative.

The correct way:

Keep the negative in brackets and count the factors: $(-2)^2 = 4$, while $(-2)^3 = -8$.

Dropping the constant term or its sign.

Where it slips in:

Racing through the variable terms, a student forgets the final constant, or copies $-5$ as $+5$.

Don't do this:

Do not stop at the last $x$ term. The constant is a full term of the polynomial.

The correct way:

Write out every term including the constant before simplifying, and carry each sign exactly as it appears.

Practice Problems On The Value Of A Polynomial

Use $P(x) = x^3 - 4x^2 + x + 6$ unless a problem says otherwise. Answers follow each line.

Find $P(0)$.
(Answer: $6$, the constant term.)

Find $P(3)$.
(Answer: $27 - 36 + 3 + 6 = 0$, so $3$ is a zero.)

Find $P(-1)$.
(Answer: $-1 - 4 - 1 + 6 = 0$, so $-1$ is a zero.)

Find $P\left(\tfrac{1}{2}\right)$.
(Answer: $\tfrac{1}{8} - 1 + \tfrac{1}{2} + 6 = \tfrac{45}{8}$.)

Use the remainder theorem to find the remainder when $P(x)$ is divided by $(x - 2)$.
(Answer: $P(2) = 8 - 16 + 2 + 6 = 0$, so the remainder is $0$ and $(x - 2)$ is a factor.)

Use Horner's method to evaluate $P(3)$ from the coefficients $1, -4, 1, 6$.
(Answer: $1 \to 1(3)-4=-1 \to -1(3)+1=-2 \to -2(3)+6=0$, confirming $P(3)=0$.)

Where Should You Go Next After The Value Of A Polynomial?

Evaluating a polynomial is the doorway into the rest of polynomial algebra, and a few natural next steps open from here.

  1. Polynomials. Step back to the full picture of terms, coefficients, and how a polynomial is built.

  2. Degree Of A Polynomial. The degree sets how many zeros a polynomial can have and how its curve behaves at the ends.

  3. Zeros Of A Polynomial. Turn evaluation into solving, finding the inputs whose value is zero.

  4. Roots Of Quadratic Equation. See the same value-and-zero idea drive the quadratic formula.

If your child is building these foundations, a live Bhanzu trainer teaches polynomial evaluation starting from the "why" (the curves and roots the value describes) in the Bhanzu algebra program.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What does the value of a polynomial mean?
The value of a polynomial at $x = a$ is the number $P(a)$ you get by substituting $a$ for every $x$ and simplifying. Each input gives exactly one value, which is the height of the polynomial's curve at that point.
How do you find the value of a polynomial at $x = a$?
Replace every $x$ with $a$, resolve the powers first, then the multiplications, then the additions and subtractions. Keeping negative and fractional inputs inside brackets prevents most sign errors.
Is $P(a)$ the same as the remainder when dividing by $(x - a)$?
Yes. The remainder theorem says the remainder on dividing $P(x)$ by $(x - a)$ equals $P(a)$, so evaluating and finding that remainder give the identical number.
What is the difference between the value of a polynomial and a zero of a polynomial?
The value is the output $P(a)$ for any input $a$. A zero is a special input whose value is exactly $0$, which is where the curve meets the $x$-axis and where $(x - a)$ becomes a factor.
Can the value of a polynomial be negative or a fraction?
Yes. The value can be any real number. Negative inputs, fractional inputs, and fractional or negative outputs are all normal, as in $P\left(\tfrac{1}{2}\right) = -\tfrac{7}{2}$.
Which curricula teach evaluating polynomials?
Evaluating a polynomial appears in India's NCERT syllabus in Classes 9 and 10 (Polynomials) and in the United States under the Common Core high-school standards for arithmetic with polynomials (A-APR). It recurs throughout later algebra and calculus.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →