Welcome! Today we're tackling Evaluating Polynomials at Any Input — the foundational skill that powers everything else in this chapter.
Every technique in this chapter depends on one basic operation: plugging a number into a polynomial and computing the result.
Whether you are checking if something is a zero, verifying a relationship, or applying the remainder theorem — it all comes down to evaluation.
The catch is that most errors happen not because students don't understand the concept, but because they:
In this lesson, you will build an error-proof evaluation procedure that handles:
| Input Type | Example |
|---|---|
| Integers | , , |
| Negatives | , |
| Fractions | , |
We're building the evaluation skill from the ground up.
The first step is the basic procedure:
Substitute → Compute powers → Multiply by coefficients → Add
Even with positive inputs, there is a sequence that must be followed.
Here's how it works:
To evaluate at , replace every with and compute:
Step-by-step breakdown:
Your turn! 📝
Evaluate at input.
Show each step.
Here is the step-by-step procedure for evaluating a polynomial:
Step 1: Substitute the value, wrapping it in parentheses.
So for at , we write:
Step 2: Simplify powers first.
and
So now we have:
Step 3: Multiply each power by its coefficient.
So now:
Step 4: Add all terms from left to right.
So Answer
For at :
Step 1: Substitute into every
Step 2: Evaluate the powers first
Step 3: Multiply
Step 4: Add and subtract left to right
So,
The order matters: powers first, then multiplication, then addition/subtraction.
This is the golden rule — mess up the order, and your answer will be wrong even if every calculation is correct!
⚠️ Common Mistake Alert
Skipping steps leads to arithmetic errors.
Always follow: Powers → Multiplication → Addition/Subtraction
Write out each line — it takes 10 extra seconds but saves you from silly mistakes!
Let's test your skills with negative inputs 🎯
Positive inputs are straightforward. The real challenge comes with negative inputs, where:
This is the single most common source of errors in polynomial evaluation.
Key rules to remember:
When substituting a negative number, wrap it in parentheses before applying the exponent
Even powers of any number are positive:
Negative times negative is positive:
Your turn! ✏️
Evaluate at input.
Show every step, especially how you handle the signs.
This is where most evaluation mistakes happen. Let's be very careful.
at .
Step 1: Substitute with parentheses
Write:
Notice how we wrap in parentheses everywhere — this is crucial for handling the signs correctly!
Now handle each term:
Term 1:
First compute . This is .
Negative times negative is positive.
Then Term 1.
Term 2:
This is negative times negative = positive.
Term 2
Term 3:
Final step — Add all terms:
(Answer)
So
The two danger points:
The safeguard: Always wrap the substituted value in parentheses.
Write , not .
Why this matters:
Without parentheses, means
With parentheses, means
These are completely different values!
We've handled positive and negative integer inputs. The final category is fractions, which require:
This completes the evaluation toolkit.
When evaluating at a fraction like :
Compute the power first:
Multiply by the coefficient:
Convert all terms to a common denominator before adding
Your Turn ✏️
Evaluate at .
Show every step.
Fractional inputs require careful step-by-step work. Let's evaluate at .
Step 1: Compute the power.
When squaring a fraction, we square both the numerator and denominator separately: and .
Step 2: Multiply by the coefficient. simplified
We write 6 as , multiply across to get , then simplify by dividing both by 2.
Step 3: Compute the next term.
Step 4: Convert the constant to the same denominator.
Step 5: Add all terms with the common denominator 2:
27 - 21 = 6
6 - 6 = 0
0Answer!
The result is 0 — which means is a zero of this polynomial. That is a concept we explore next.
The key habit with fractions: always convert to a common denominator before adding.
Do not try to add in your head.
Step-by-step approach:
Convert ALL terms to the same denominator first
Here, the common denominator is 2:
Now combine: