Polynomial Notation and Evaluation
Giving a polynomial a name looks like a small piece of bookkeeping. It is the move that makes the rest of the topic possible: once the whole expression has a name, you can ask what it equals at a particular number, and every theorem from here on is an answer to that question.
Let $P(x) = x^2 - 4x + 1$. Work out $P(3)$, then $P(-3)$. Most people get one of them wrong on the first attempt. Before you check, write down which term you are least confident about and why.
The symbol $P(x)$ is a name for the whole polynomial, not $P$ multiplied by $x$. Replacing the $x$ inside the brackets with a number is an instruction: substitute that number everywhere $x$ appears, and evaluate.
$$P(a) = \text{the value of } P(x) \text{ when } x = a$$
Two values are worth knowing on sight. $P(0)$ is the constant term, because every other term contains a factor of $x$ and vanishes. And $P(1)$ is the sum of all the coefficients, because every power of $1$ is $1$. Both give a fast check on any answer.
Know
- That $P(x)$ names a polynomial and $P(a)$ is its value at $x = a$
- That $P(0)$ is the constant term and $P(1)$ is the sum of the coefficients
- That two polynomials are equal exactly when all their matching coefficients are equal
Understand
- Why substituting a negative number requires brackets around it
- Why the substitution can be a whole expression, not only a number
Can Do
- Evaluate a polynomial at any number, including negatives and fractions
- Use $P(0)$ and $P(1)$ as checks on an answer
- Equate coefficients to find unknown constants in a polynomial identity
When you write
$$P(x) = 2x^3 - 5x + 1$$
you are giving the expression on the right a name. The letter $P$ is the name and the $x$ in brackets announces which letter is the variable. $P(x)$ is not $P$ multiplied by $x$. There is no quantity called $P$ standing alone, so there is nothing to multiply.
Any capital letter will do, and questions often use several at once: $P(x)$, $Q(x)$, $A(x)$, $R(x)$. In Lesson 6 you will meet $P(x) = A(x)Q(x) + R(x)$, four different polynomials in one line, and that sentence is unreadable unless the notation is second nature.
The payoff is that you can now say things about the whole expression in a few symbols. "$P(3) = 0$" replaces "when you substitute $3$ into $2x^3 - 5x + 1$ you get zero". Every theorem in this focus area is written in that shorthand.
$P(a)$ means: replace every $x$ by $a$, then simplify. Take $P(x) = x^3 - 4x^2 + 2$.
$$P(3) = 3^3 - 4(3)^2 + 2 = 27 - 36 + 2 = -7$$
Negatives are where marks are lost, and one habit fixes it: write the number in brackets every time.
$$P(-2) = (-2)^3 - 4(-2)^2 + 2 = -8 - 4(4) + 2 = -8 - 16 + 2 = -22$$
Compare $(-2)^2 = 4$ with $-2^2 = -4$. Without brackets the power binds to the $2$ alone and the minus sign is applied afterwards, which is a different calculation. Substitution means the whole number goes in, sign included, so the brackets are not optional decoration.
Fractions work the same way:
$$P\left(\tfrac{1}{2}\right) = \left(\tfrac{1}{2}\right)^3 - 4\left(\tfrac{1}{2}\right)^2 + 2 = \tfrac{1}{8} - 1 + 2 = \tfrac{9}{8}$$
Take $P(x) = a_n x^n + \cdots + a_1 x + a_0$.
$P(0)$ is the constant term. Every term except the last contains a factor of $x$, so every one of them becomes $0$:
$$P(0) = a_n(0)^n + \cdots + a_1(0) + a_0 = a_0$$
$P(1)$ is the sum of the coefficients. Every power of $1$ is $1$, so each term collapses to its own coefficient:
$$P(1) = a_n + a_{n-1} + \cdots + a_1 + a_0$$
Both are worth using as checks. For $P(x) = 3x^3 - x^2 + 4x - 5$, you can read off $P(0) = -5$ instantly, and $P(1) = 3 - 1 + 4 - 5 = 1$ in one line of mental arithmetic. If a long substitution gives you a different $P(0)$, the error is in the substitution, not in the shortcut.
A third is nearly as quick: $P(-1)$ is the alternating sum, $a_0 - a_1 + a_2 - a_3 + \cdots$, because odd powers of $-1$ are $-1$ and even powers are $+1$.
Nothing in the definition of $P(a)$ requires $a$ to be a number. Substituting an expression works identically: replace every $x$ by the whole expression, in brackets.
With $P(x) = x^2 - 3x$:
$$P(2t) = (2t)^2 - 3(2t) = 4t^2 - 6t$$
$$P(x+1) = (x+1)^2 - 3(x+1) = x^2 + 2x + 1 - 3x - 3 = x^2 - x - 2$$
Two warnings follow from those lines. First, $P(x+1)$ is not $P(x) + 1$: the substitution goes inside the polynomial, not after it. Second, $P(2t) \neq 2P(t)$ in general, since $4t^2 - 6t$ is not $2(t^2 - 3t)$.
These are the same manipulations you will use in Lesson 12 to shift and stretch a polynomial's graph, so it is worth being comfortable with them now, while the polynomials are small.
Two polynomials are equal when they take the same value at every $x$. That turns out to be a very strong condition:
$$P(x) = Q(x) \text{ for all } x \quad \Longleftrightarrow \quad \text{every matching coefficient is equal}$$
So if $ax^2 + bx + c = 3x^2 - 7$ for all $x$, then $a = 3$, $b = 0$ and $c = -7$. Comparing coefficients like this is called equating coefficients, and it is the standard way to find unknown constants.
The alternative is to substitute clever values. From the identity $x^2 + px + q = (x+2)(x+r)$, putting $x = -2$ kills the right side and gives $4 - 2p + q = 0$ in one step. Choosing values that make brackets vanish is often faster than expanding.
Both methods rest on the same fact: an identity holds for every $x$, so you may substitute whatever value is most convenient. An ordinary equation such as $x^2 = 4$ holds only for particular values, and substituting into it proves nothing.
Watch Me Solve It · 3 examples
-
1Substitute with brackets everywhere$P(-2) = 2(-2)^3 - (-2)^2 + 5(-2) - 4$Every $x$ becomes $(-2)$, including the one hidden in $5x$.
-
2Evaluate the powers first$(-2)^3 = -8, \qquad (-2)^2 = 4$An odd power of a negative is negative; an even power is positive.
-
3Multiply and add$P(-2) = 2(-8) - 4 - 10 - 4 = -16 - 4 - 10 - 4 = -34$
-
4Check the easy value$P(0) = -4$The constant term is $-4$, which matches, so the polynomial was copied correctly.
-
1Read d straight off P(0)$d = 6$$P(0)$ is always the constant term.
-
2Write out P(1) and P(-1)$a + b + c + 6 = 4$$-a + b - c + 6 = 12$Powers of $1$ are all $1$; powers of $-1$ alternate in sign.
-
3Subtract to eliminate b$(a + b + c) - (-a + b - c) = (4-6) - (12-6)$$2a + 2c = -8$The $b$ terms are identical in both, so subtracting removes them.
-
4Simplify$a + c = -4$Adding the two equations instead would have given $b$, showing that $2b + 12 = 16$, so $b = 2$.
-
1Choose the fastest substitution first$x = 2: \quad 8 - 8 + 5 = 0 + c$$c = 5$Putting $x = 2$ makes the bracket $(x-2)$ vanish, isolating $c$ immediately.
-
2Expand the right side$(x-2)(x^2 + ax + b) = x^3 + (a-2)x^2 + (b - 2a)x - 2b$Collect like powers so the coefficients can be compared.
-
3Equate the coefficients of each power$x^2: \quad a - 2 = -2 \ \Rightarrow \ a = 0$$x^1: \quad b - 2a = 0 \ \Rightarrow \ b = 0$The left side has no $x$ term, so its coefficient is $0$.
-
4Check with the constant term$-2b + c = -0 + 5 = 5$The left side's constant term is $5$, which agrees, so all three values are consistent.
Brain Trainer · 5 problems
Five items on notation and evaluation. Work each one, then reveal the answer.
-
1 $P(x) = x^2 - 6x + 5$. Find $P(-1)$.
$(-1)^2 - 6(-1) + 5 = 1 + 6 + 5$.$12$ -
2 $P(x) = 4x^3 - 2x + 9$. Find $P(0)$ without expanding anything.
$P(0)$ is always the constant term.$9$ -
3 $P(x) = 2x^4 - 3x^3 + x - 6$. Find $P(1)$.
Add the coefficients: $2 - 3 + 0 + 1 - 6$.$-6$ -
4 $P(x) = x^2 + x$. Find $P(x - 1)$ in expanded form.
$(x-1)^2 + (x-1) = x^2 - 2x + 1 + x - 1$.$x^2 - x$ -
5 If $ax^2 + 3x + b = 5x^2 + 3x - 2$ for all $x$, find $a$ and $b$.
Equate matching coefficients.$a = 5$, $b = -2$
Multiple Choice · 5 questions
The expression $P(x)$ means:
If $P(x) = x^2 - x$, then $P(-4)$ equals:
For any polynomial $P$, the value $P(0)$ is always:
If $P(x) = x^2 + 1$, then $P(x + 2)$ equals:
Given that $ax^2 + bx + c = 2(x-1)^2$ for all values of $x$, the value of $b$ is:
Short Answer · 3 questions
(a) Find $P(2)$.
(b) Find $P(-1)$.
(c) Find $P(0)$ and $P(1)$ without doing any long substitution, explaining each in one sentence.
(d) Is $2$ a zero of $P$? Justify your answer using part (a).
(a) Find $P(3t)$ in expanded form.
(b) Find $P(x - 1)$ in expanded form.
(c) Show, using $P$, that $P(a+b)$ is not always equal to $P(a) + P(b)$, by giving a specific counterexample with full working.
(d) Find all values of $x$ for which $P(x) = P(-x)$, and explain what your answer says about the polynomial.
(a) Find $b$ by substituting a well-chosen value of $x$.
(b) Find $a$ by equating coefficients, stating which coefficient you used.
(c) Verify your answer by checking a coefficient you did not use.
(d) Explain why the technique in (a) is valid here but would not be valid for the equation $2x^3 + x^2 = 13x - 6$.
(b) Show that no polynomial of degree at most $2$ can satisfy $P(0) = 1$, $P(1) = 4$, $P(2) = 9$ and $P(3) = 20$.
(c) A polynomial of degree at most $n$ has $n+1$ coefficients. Explain why knowing its value at $n+1$ different numbers is generally enough to determine it completely, and what goes wrong if two of those numbers are the same.
P is a name
Never $P$ multiplied by $x$
Substitute in brackets
$(-2)^2 = 4$, but $-2^2 = -4$
Free values
$P(0)$ constant term, $P(1)$ sum of coefficients
Identities
True for all $x$, so equate coefficients
Your Badges
0 of 6Mark lesson as complete
Tick when you've finished Learn, Practice and the Stretch. Earns +80 XP and +25 coins.