A polynomial in one variable x is an expression of the form
anxn+an−1xn−1+⋯+a1x+a0, where n∈′{′N′}′0,
an,an−1,…,a0∈′{′R′}′, and an=0. Polynomials and their manipulation
form a core part of the DSE compulsory mathematics syllabus, with applications ranging from
algebraic identities to combinatorial coefficient extraction.
Polynomial Basics
Definition and Terminology
A polynomial f(x) of degree n is written in standard form (descending powers of x):
f(x)=anxn+an−1xn−1+⋯+a1x+a0,an=0
- an is the leading coefficient.
- a0 is the constant term.
- The degree of f(x) is the highest power of x with a non-zero coefficient.
- A polynomial of degree 0 is a non-zero constant; the zero polynomial has undefined degree.
Polynomial Identities
A polynomial identity is an equality that holds for all values of the variable. Two polynomials
f(x) and g(x) are identical (written f(x)≡g(x)) if and only if the coefficients of
corresponding powers of x are equal.
Key identities at DSE level
- (a+b)2=a2+2ab+b2
- (a−b)2=a2−2ab+b2
- (a+b)(a−b)=a2−b2
- (a+b)3=a3+3a2b+3ab2+b3
- (a−b)3=a3−3a2b+3ab2−b3
- a3+b3=(a+b)(a2−ab+b2)
- a3−b3=(a−b)(a2+ab+b2)
- a3+b3+c3−3abc=(a+b+c)(a2+b2+c2−ab−bc−ca)
Details
Example: Using the method of undetermined coefficients
Find constants
A,
B,
C such that
x2+4x+6≡A(x−1)2+B(x−1)+C.
Expanding the right-hand side:
A(x2−2x+1)+Bx−B+C=Ax2+(−2A+B)x+(A−B+C)Equating coefficients:
- x2: A=1
- x: −2A+B=4⟹B=6
- constant: A−B+C=6⟹1−6+C=6⟹C=11
Therefore x2+4x+6≡(x−1)2+6(x−1)+11.
Binomial Theorem
Statement
For any positive integer n,
(a+b)n=k=0∑n(kn)an−kbk
where the binomial coefficient is
(kn)=nCk=k!(n−k)!n!
This is known as the Binomial Theorem. See also
combinatorial notation.
Pascal's Triangle
The binomial coefficients (kn) for successive values of n form Pascal's triangle:
\begin{array}{c@{\hspace{12pt}}c@{\hspace{12pt}}c@{\hspace{12pt}}c@{\hspace{12pt}}c@{\hspace{12pt}}c}
& & & & 1 & \\
& & & 1 & & 1 \\
& & 1 & & 2 & & 1 \\
& 1 & & 3 & & 3 & & 1 \\
1 & & 4 & & 6 & & 4 & & 1
\end{array}
Each entry is the sum of the two entries directly above it, reflecting the recurrence relation
(kn)=(k−1n−1)+(kn−1).
Properties of Binomial Coefficients
-
Symmetry: (kn)=(n−kn)
-
Recurrence (Pascal's identity):
(kn)=(k−1n−1)+(kn−1)
-
Sum of coefficients: Setting a=b=1 in the binomial theorem,
k=0∑n(kn)=2n
- Alternating sum: Setting a=1,b=−1,
k=0∑n(−1)k(kn)=0
Expanding (1+x)n
The expansion of (1+x)n is a frequently tested form:
(1+x)n=(0n)+(1n)x+(2n)x2+⋯+(nn)xn
The general term (the (r+1)-th term) is:
Tr+1=(rn)xr,r=0,1,2,…,n
Expanding (a+bx)n
For (a+bx)n, the general term is:
Tr+1=(rn)an−r(bx)r=(rn)an−rbrxr
To find the coefficient of xk, set r=k and evaluate:
[coefficientofxk]=(kn)an−kbk
Details
Example: Finding a specific coefficient
Find the coefficient of
x3 in the expansion of
(2−3x)7.
The general term is Tr+1=(r7)27−r(−3x)r.
For the x3 term, set r=3:
(37)⋅24⋅(−3)3=35⋅16⋅(−27)=−15120The coefficient of x3 is −15120.
Details
Example: Finding the constant term
Find the constant term in the expansion of
(x+x2)6.
The general term is
Tr+1=(r6)x6−r(x2)r=(r6)⋅2r⋅x6−2r.
For the constant term, 6−2r=0⟹r=3:
(36)⋅23=20⋅8=160The constant term is 160.
Details
Example: Finding the middle term
Find the middle term in the expansion of
(1+2x)10.
Since n=10 (even), there is one middle term at position 2n+1=6, i.e. r=5:
T6=(510)(2x)5=252⋅32x5=863x5
Polynomial Division
Long Division
Given two polynomials f(x) (dividend) and g(x) (divisor) with degg(x)≥1, polynomial
long division yields a quotient q(x) and a remainder r(x) such that
f(x)=g(x)⋅q(x)+r(x)
where degr(x)<degg(x) or r(x)=0.
Details
Example: Long division
Divide
f(x)=2x3+3x2−5x+7 by
g(x)=x2−x+2.
x2−x+2\cline2−22x3+3x2−5x+72x2x3−2x2+4x2x35x2−9x+72x35x2−5x+10\cline2−22x35x2−4x−3Quotient: q(x)=2x+5, Remainder: r(x)=−4x−3.
Verification: (x2−x+2)(2x+5)+(−4x−3)=2x3+3x2−5x+7.
Remainder Theorem
When a polynomial f(x) is divided by (x−c), the remainder is f(c).
Proof. By the division algorithm, f(x)=(x−c)⋅q(x)+r where r is a constant (since
degr<deg(x−c)=1). Substituting x=c: f(c)=0⋅q(c)+r=r.
For a divisor of the form (ax−b), set x=ab to obtain the remainder
f(ab).
Details
Example: Remainder theorem
Find the remainder when
f(x)=3x4−2x3+x−5 is divided by
(x−2).
By the Remainder Theorem, the remainder is f(2):
f(2)=3(16)−2(8)+2−5=48−16+2−5=29
Details
Example: Remainder with a non-monic linear divisor
Find the remainder when
f(x)=2x3−5x+3 is divided by
(2x+1).
Set 2x+1=0⟹x=−21. The remainder is:
f(−21)=2(−21)3−5(−21)+3=−41+25+3=421
Factor Theorem
(x−c) is a factor of f(x) if and only if f(c)=0.
This follows directly from the Remainder Theorem: if the remainder f(c)=0, then
f(x)=(x−c)⋅q(x), so (x−c) divides f(x) exactly.
Corollary. (ax−b) is a factor of f(x) if and only if f(ab)=0.
Details
Example: Factor theorem
Show that
(x−3) is a factor of
f(x)=x3−4x2+x+6 and hence factorize
f(x) completely.
f(3)=27−36+3+6=0, so (x−3) is a factor.
By division (or by comparing coefficients), f(x)=(x−3)(x2−x−2)=(x−3)(x−2)(x+1).
Details
Example: Finding an unknown constant
If
(x+2) is a factor of
f(x)=x3+ax2−3x+10, find
a.
By the Factor Theorem, f(−2)=0:
(−2)3+a(−2)2−3(−2)+10=0⟹−8+4a+6+10=0⟹4a+8=0⟹a=−2
Factorization of Polynomials
Common Techniques
Details
HCF (highest common factor)
Factor out the greatest common factor from all terms.
6x3−9x2+12x=3x(2x2−3x+4)
Grouping
x3+2x2−3x−6=x2(x+2)−3(x+2)=(x2−3)(x+2)
Difference of squares
a2−b2=(a+b)(a−b)4x2−25=(2x+5)(2x−5)9x4−16y2=(3x2+4y)(3x2−4y)
Sum and difference of cubes
a3+b3=(a+b)(a2−ab+b2)a3−b3=(a−b)(a2+ab+b2)8x3+27=(2x+3)(4x2−6x+9)125x3−8=(5x−2)(25x2+10x+4)
Details
Quadratic trinomials
For
ax2+bx+c, find two numbers
p and
q such that
pq=ac and
p+q=b.
6x2−7x+2=6x2−4x−3x+2=2x(3x−2)−1(3x−2)=(2x−1)(3x−2)If the discriminant Δ=b2−4ac<0, the quadratic cannot be factorized over ′{′R′}′.
Factorization by the Factor Theorem
For polynomials of degree 3 or higher, use the Factor Theorem to find linear factors by testing
integer roots (factors of the constant term), then factorize the resulting quotient.
Details
Example: Complete factorization
Factorize
f(x)=2x3+x2−13x+6 completely.
Test integer factors of 6: try x=1.
f(1)=2+1−13+6=−4=0
Try x=2:
f(2)=16+4−26+6=0, so (x−2) is a factor.
Dividing: f(x)=(x−2)(2x2+5x−3)=(x−2)(2x−1)(x+3).
Equations
Solving Polynomial Equations
To solve f(x)=0:
- Factorize f(x) into linear (and possibly irreducible quadratic) factors.
- Set each factor equal to zero and solve.
Details
Example
Solve
x3−3x2−4x+12=0.
Factorizing by grouping: x2(x−3)−4(x−3)=(x2−4)(x−3)=(x−2)(x+2)(x−3)=0.
Solutions: x=2,−2,3.
For a quadratic equation ax2+bx+c=0 with roots α and β:
α+β=−ab,αβ=ac
These relationships between roots and coefficients are essential for DSE problems involving root
manipulation.
Details
Example: Finding a new equation from roots
If
α and
β are roots of
2x2−5x+1=0, find the equation whose roots are
α2 and
β2.
From Vieta: α+β=25, αβ=21.
Sum of new roots:
α2+β2=(α+β)2−2αβ=425−1=421Product of new roots:
α2β2=(αβ)2=41The required equation is x2−421x+41=0, or equivalently
4x2−21x+1=0.
Details
Example: Symmetric expressions in roots
If
α and
β are roots of
x2−6x+4=0, find the value of
α1+β1.
α1+β1=αβα+β=46=23
Details
Extension: Vieta's formulas for cubic equations
For
ax3+bx2+cx+d=0 with roots
α,β,γ:
α+β+γ=−ab,αβ+βγ+γα=ac,αβγ=−ad
Wrap-up Questions
- Question: Expand (1+2x)6 and find the coefficient of x4.
Details
Answer
Using the binomial theorem:
(1+2x)6=k=0∑6(k6)(2x)kThe coefficient of x4 corresponds to k=4:
(46)⋅24=15⋅16=240The full expansion is 1+12x+60x2+160x3+240x4+192x5+64x6.
- Question: Find the constant term in the expansion of (x2+x1)9.
Details
Answer
The general term is
Tr+1=(r9)(x2)9−r⋅(x1)r=(r9)x18−3r.
For the constant term: 18−3r=0⟹r=6.
(69)=(39)=84The constant term is 84.
- Question: When f(x)=2x3+ax2+bx−6 is divided by (x−1), the remainder is −4.
When divided by (x+2), the remainder is 30. Find a and b.
Details
Answer
By the Remainder Theorem:
- f(1)=2+a+b−6=−4⟹a+b=0(i)
- f(−2)=−16+4a−2b−6=30⟹4a−2b=52⟹2a−b=26(ii)
Adding (i) and (ii): 3a=26⟹a=326.
From (i): b=−326.
- Question: Given that (x−3) and (x+1) are factors of f(x)=x3+ax2+bx+c,
find a, b, and c. Hence factorize f(x) completely.
Details
Answer
By the Factor Theorem:
- f(3)=27+9a+3b+c=0(i)
- f(−1)=−1+a−b+c=0(ii)
Since (x−3)(x+1)=x2−2x−3 is a factor, write f(x)=(x2−2x−3)(x−d) for some
constant d.
Expanding: f(x)=x3−(d+2)x2+(2d−3)x+3d.
Comparing with f(x)=x3+ax2+bx+c:
- a=−(d+2)
- b=2d−3
- c=3d
Also f(3)=0 gives 27+9a+3b+c=0.
Using f(−1)=0: −1+a−b+c=0.
Subtracting (ii) from (i): 28+8a+4b=0⟹7+2a+b=0(iii).
From (ii): a−b+c=1.
Substituting a=−(d+2), b=2d−3, c=3d into (i):
27+9(−d−2)+3(2d−3)+3d=27−9d−18+6d−9+3d=0This simplifies to 0=0, which is consistent. From (ii):
−1−d−2+3−2d+3d=0⟹0=0We need one more condition. Since the leading coefficient is 1 and f(x)=(x−3)(x+1)(x−d), we
must have the constant term c=3d. But f(x) has constant term c. Comparing: c=3d. We have
one free parameter, so let us use f(0)=c=3d, but we need another constraint.
Let us equate the x2 coefficient: a=−(d+2). The x coefficient: b=2d−3. Substituting
into (iii): 7+2(−d−2)+(2d−3)=7−2d−4+2d−3=0. Again automatically satisfied.
Without additional information, d is undetermined. However, since (x−3) and (x+1) are the
only stated factors, and the problem asks us to factorize completely, we observe that a cubic with
two known linear factors has a third linear factor. By Vieta, α+β+γ=−a, and
αβγ=−c. With α=3,β=−1:
3+(−1)+γ=−a⟹2+γ=−a3⋅(−1)⋅γ=−c⟹−3γ=−c⟹c=3γThere are infinitely many cubics with (x−3) and (x+1) as factors. Assuming the problem intends a
monic cubic (which it is, with leading coefficient 1), we write f(x)=(x−3)(x+1)(x−d) where
d is the third root. Since no further condition is given, the general answer is:
a=−(d+2), b=2d−3, c=3d, and f(x)=(x−3)(x+1)(x−d) for any real d.
- Question: Factorize x4−5x2+4 completely.
Details
Answer
Let
u=x2:
u2−5u+4=(u−1)(u−4)=(x2−1)(x2−4)=(x−1)(x+1)(x−2)(x+2)
- Question: If α and β are roots of 3x2−8x+2=0, find the value of
α3+β3 without solving the equation.
Details
Answer
From Vieta:
α+β=38,
αβ=32.
α3+β3=(α+β)3−3αβ(α+β)=(38)3−3⋅32⋅38=27512−948=27512−27144=27368
- Question: Expand (1−3x)5 in ascending powers of x up to and including the term in
x3. Use the expansion to find an approximate value of (0.97)5.
Answer
(1−3x)5=(05)+(15)(−3x)+(25)(−3x)2+(35)(−3x)3+⋯=1−15x+90x2−270x3+⋯Set 1−3x=0.97⟹x=0.01:
(0.97)5≈1−15(0.01)+90(0.0001)−270(0.000001)=1−0.15+0.009−0.00027=0.85873
- Question: The remainder when f(x)=x3+px2+qx+6 is divided by (x−1) is 12. The
remainder when f(x) is divided by (x+1) is 18. Find p and q.
Answer
- f(1)=1+p+q+6=12⟹p+q=5(i)
- f(−1)=−1+p−q+6=18⟹p−q=13(ii)
Adding: 2p=18⟹p=9.
From (i): q=−4.
- Question: Prove that (rn)=(n−rn) using the definition of binomial
coefficients.
Answer
(n−rn)=(n−r)![n−(n−r)]!n!=(n−r)!r!n!=(rn)
- Question: Find the coefficient of x5 in the expansion of (1+x)8(1−x)6.
Details
Answer
Expand each factor using the binomial theorem and collect the
x5 terms.
From (1+x)8, the terms contributing to x5 are xk where k≤5; from (1−x)6, the term
(−x)5−k.
The coefficient of x5 is:
k=0∑5(k8)(−1)5−k(5−k6)Evaluating each term:
- k=0: (08)(−1)5(56)=1⋅(−1)⋅6=−6
- k=1: (18)(−1)4(46)=8⋅1⋅15=120
- k=2: (28)(−1)3(36)=28⋅(−1)⋅20=−560
- k=3: (38)(−1)2(26)=56⋅1⋅15=840
- k=4: (48)(−1)1(16)=70⋅(−1)⋅6=−420
- k=5: (58)(−1)0(06)=56⋅1⋅1=56
Sum: −6+120−560+840−420+56=30.
The coefficient of x5 is 30.
- Question: Let α and β be the roots of x2−7x+3=0. Form a quadratic
equation whose roots are α1 and β1.
Details
Answer
From Vieta:
α+β=7,
αβ=3.
Sum of new roots:
α1+β1=αβα+β=37.
Product of new roots: α1⋅β1=31.
The equation is x2−37x+31=0, or 3x2−7x+1=0.
- Question: Factorize f(x)=x3−3x2+4 completely.
Details
Answer
Test integer factors of
4: try
x=−1.
f(−1)=−1−3+4=0, so (x+1) is a factor.
Dividing: f(x)=(x+1)(x2−4x+4)=(x+1)(x−2)2.
Diagnostic Test
Ready to test your understanding of Polynomials? The diagnostic test contains the hardest questions within the DSE specification for this topic, each with a full worked solution.
Unit tests probe edge cases and common misconceptions. Integration tests combine Polynomials with other DSE mathematics topics to test synthesis under exam conditions.
See Diagnostic Guide for instructions on self-marking and building a personal test matrix.
DSE Exam Technique
Showing Working
For polynomial problems in DSE Paper 1:
- When using the remainder theorem, write "By the Remainder Theorem, the remainder is f(c)" before computing.
- When using the factor theorem, show that f(c)=0 before stating that (x−c) is a factor.
- For polynomial division, show the division layout or state the quotient and remainder explicitly.
- When finding unknown constants, set up a system of equations and solve step by step.
- For binomial expansion, write the general term formula before substituting.
Binomial coefficients and factorials are exact integers. Polynomial roots involving square roots should be left in exact form.
Common DSE Question Types
- Remainder theorem with unknown constants.
- Factor theorem to factorise cubics and quartics.
- Binomial expansion (specific coefficient, constant term, approximation).
- Vieta's formulas for root manipulation.
- Polynomial identities (equating coefficients).
Additional Worked Examples
Worked Example 13: Cubic with given conditions
The polynomial f(x)=x3+ax2+bx−12 is divisible by (x−3) and f(1)=−18. Find a, b, and factorise f(x) completely.
Solution
f(3)=0: 27+9a+3b−12=0⟹9a+3b=−15⟹3a+b=−5(i).
f(1)=−18: 1+a+b−12=−18⟹a+b=−7(ii).
(ii) from (i): 2a=2⟹a=1. From (ii): b=−8.
f(x)=x3+x2−8x−12.
Since (x−3) is a factor: f(x)=(x−3)(x2+4x+4)=(x−3)(x+2)2.
Worked Example 14: Sum of coefficients
Find the sum of all coefficients of (2x−3)5.
Solution
The sum of coefficients equals f(1) where f(x)=(2x−3)5.
f(1)=(2−3)5=(−1)5=−1
Worked Example 15: Remainder when divided by a quadratic
Find the remainder when f(x)=x4+2x3−x2+3 is divided by x2−x+1.
Solution
Since the divisor is degree 2, the remainder has degree at most 1: r(x)=ax+b.
The roots of x2−x+1=0 are ω and ω2 (complex cube roots of unity, ω3=1).
By the remainder theorem for quadratic divisors:
f(ω)=aω+bandf(ω2)=aω2+b
Since ω2+ω+1=0 (i.e., ω2=−ω−1) and ω3=1:
f(ω)=ω4+2ω3−ω2+3=ω+2−(−ω−1)+3=ω+2+ω+1+3=2ω+6.
f(ω2)=ω8+2ω6−ω4+3=ω2+2−ω+3=(−ω−1)+2−ω+3=−2ω+4.
From aω+b=2ω+6: a=2, b=6.
Check: aω2+b=2(−ω−1)+6=−2ω+4. Consistent.
Remainder: 2x+6.
Worked Example 16: Vieta for cubic equations
If α, β, γ are roots of x3−2x2+3x−4=0, find α2+β2+γ2.
Solution
From Vieta: α+β+γ=2, αβ+βγ+γα=3, αβγ=4.
(α+β+γ)2=α2+β2+γ2+2(αβ+βγ+γα)
4=α2+β2+γ2+6⟹α2+β2+γ2=−2
Worked Example 17: Binomial coefficient ratio
If (3n)=3(2n−1), find n.
Solution
3!(n−3)!n!=3⋅2!(n−3)!(n−1)!
6n=23⟹n=9
DSE Exam-Style Questions
DSE Practice 1. When f(x)=x3+ax2+bx+c is divided by (x−1), the remainder is 4. When divided by (x+1), the remainder is −2. When divided by (x−2), the remainder is 14. Find a, b, and c.
Solution
f(1)=1+a+b+c=4⟹a+b+c=3(i)
f(−1)=−1+a−b+c=−2⟹a−b+c=−1(ii)
f(2)=8+4a+2b+c=14⟹4a+2b+c=6(iii)
(i) - (ii): 2b=4⟹b=2.
(iii) - (i): 3a+b=3⟹3a+2=3⟹a=31.
From (i): 31+2+c=3⟹c=32.
DSE Practice 2. Find the coefficient of x3 in the expansion of (1+2x−x2)5.
Solution
We need to find all ways to get x3 from expanding (1+2x−x2)5 using the multinomial theorem.
The general term from choosing a ones, b copies of 2x, and c copies of −x2 where a+b+c=5:
a!b!c!5!⋅1a⋅(2x)b⋅(−x2)c=a!b!c!5!⋅2b⋅(−1)c⋅xb+2c
For x3: b+2c=3 with a+b+c=5, a,b,c≥0.
Case c=0: b=3, a=2. Coefficient: 2!⋅3!120⋅8=10⋅8=80.
Case c=1: b=1, a=3. Coefficient: 3!⋅1!⋅1!120⋅2⋅(−1)=20⋅(−2)=−40.
Total coefficient of x3: 80+(−40)=40.
DSE Practice 3. If (x+1) and (x−2) are factors of f(x)=2x3+ax2+bx−6, find a and b. Hence find the third factor.
Solution
f(−1)=−2+a−b−6=0⟹a−b=8(i)
f(2)=16+4a+2b−6=0⟹4a+2b=−10⟹2a+b=−5(ii)
(i) + (ii): 3a=3⟹a=1. From (i): b=−7.
f(x)=2x3+x2−7x−6=(x+1)(x−2)(2x+3).
Verification: (x+1)(x−2)=x2−x−2. (x2−x−2)(2x+3)=2x3+3x2−2x2−3x−4x−6=2x3+x2−7x−6. Correct.
Third factor: (2x+3).
DSE Practice 4. Expand (1+x)10 and use the expansion to find the value of (1.01)10 correct to 5 decimal places.
Solution
(1+x)10=∑k=010(k10)xk=1+10x+45x2+120x3+210x4+252x5+⋯
Set x=0.01:
(1.01)10≈1+10(0.01)+45(0.0001)+120(0.000001)+210(0.00000001)
=1+0.1+0.0045+0.00012+0.0000021=1.1046221
To 5 decimal places: 1.10462.
DSE Practice 5. Prove that for positive integers n≥2, nn>2n−1⋅n!.
Solution
By the AM-GM inequality applied to the n numbers 1,2,3,…,n:
n1+2+⋯+n≥(1⋅2⋯n)1/n
2nn(n+1)≥(n!)1/n
2n+1≥(n!)1/n
(2n+1)n≥n!
We need to show nn>2n−1⋅n!, i.e., nn/n!>2n−1, i.e., n!nn>2n−1.
Note n!nn=n⋅(n−1)⋯1n⋅n⋯n=∏k=1n−1n−kn.
Each factor n−kn≥n−1n>1 for n≥2 and k≥1.
n−1n⋅n−2n⋯1n>2⋅2⋯2=2n−1 when n≥3 (since n−kn≥2 when n−k≤n/2).
For n=2: 4>2⋅2=4? No, 4=4. For n=3: 27>4⋅6=24. Yes.
The inequality holds strictly for n≥3. For n=2, equality holds.