A polynomial in one variable x x x is an expression of the form a n x n + a n − 1 x n − 1 + ⋯ + a 1 x + a 0 a_n x^n + a_{n-1} x^{n-1} + \cdots + a_1 x + a_0 a n x n + a n − 1 x n − 1 + ⋯ + a 1 x + a 0 Where n ∈ N 0 n \in \mathbb{N}_0 n ∈ N 0 a n , a n − 1 , … , a 0 ∈ R a_n, a_{n-1}, \ldots, a_0 \in \mathbb{R} a n , a n − 1 , … , a 0 ∈ R And a n ≠ 0 a_n \neq 0 a n = 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.
A polynomial f ( x ) f(x) f ( x ) of degree n n n is written in standard form (descending powers of x x x ):
F ( x ) = a n x n + a n − 1 x n − 1 + ⋯ + a 1 x + a 0 , a n ≠ 0 F(x) = a_n x^n + a_{n-1} x^{n-1} + \cdots + a_1 x + a_0, \quad a_n \neq 0 F ( x ) = a n x n + a n − 1 x n − 1 + ⋯ + a 1 x + a 0 , a n = 0 a n a_n a n is the leading coefficient .a 0 a_0 a 0 is the constant term .The degree of f ( x ) f(x) f ( x ) is the highest power of x x x with a non-zero coefficient. A polynomial of degree 0 is a non-zero constant; the zero polynomial has undefined degree. A polynomial identity is an equality that holds for all values of the variable. Two polynomials f ( x ) f(x) f ( x ) and g ( x ) g(x) g ( x ) are identical (written f ( x ) ≡ g ( x ) f(x) \equiv g(x) f ( x ) ≡ g ( x ) ) if and only if the coefficients of Corresponding powers of x x x are equal.
Key identities at DSE level - $(a+b)^2 = a^2 + 2ab + b^2$ - $(a-b)^2 = a^2 - 2ab + b^2$ - $(a+b)(a-b) = a^2 - b^2$ - $(a+b)^3 = a^3 + 3a^2b + 3ab^2 + b^3$ - $(a-b)^3 = a^3 - 3a^2b + 3ab^2 - b^3$ - $a^3 + b^3 = (a+b)(a^2 - ab + b^2)$ - $a^3 - b^3 = (a-b)(a^2 + ab + b^2)$ - $a^3 + b^3 + c^3 - 3abc = (a+b+c)(a^2 + b^2 + c^2 - ab - bc - ca)$Example: Using the method of undetermined coefficients Find constants $A$, $B$, $C$ such that $x^2 + 4x + 6 \equiv A(x-1)^2 + B(x-1) + C$.
Expanding the right-hand side:
A ( x 2 − 2 x + 1 ) + B x − B + C = A x 2 + ( − 2 A + B ) x + ( A − B + C ) A(x^2 - 2x + 1) + Bx - B + C = Ax^2 + (-2A + B)x + (A - B + C) A ( x 2 − 2 x + 1 ) + B x − B + C = A x 2 + ( − 2 A + B ) x + ( A − B + C ) Equating coefficients:
x 2 x^2 x 2 : A = 1 A = 1 A = 1 x x x : − 2 A + B = 4 ⟹ B = 6 -2A + B = 4 \implies B = 6 − 2 A + B = 4 ⟹ B = 6 constant: A − B + C = 6 ⟹ 1 − 6 + C = 6 ⟹ C = 11 A - B + C = 6 \implies 1 - 6 + C = 6 \implies C = 11 A − B + C = 6 ⟹ 1 − 6 + C = 6 ⟹ C = 11 Therefore x 2 + 4 x + 6 ≡ ( x − 1 ) 2 + 6 ( x − 1 ) + 11 x^2 + 4x + 6 \equiv (x-1)^2 + 6(x-1) + 11 x 2 + 4 x + 6 ≡ ( x − 1 ) 2 + 6 ( x − 1 ) + 11 .
For any positive integer n n n
( a + b ) n = ∑ k = 0 n ( n k ) a n − k b k (a + b)^n = \sum_{k=0}^{n} \binom{n}{k} a^{n-k} b^k ( a + b ) n = k = 0 ∑ n ( k n ) a n − k b k Where the binomial coefficient is
( n k ) = n C k = n ! k ! ( n − k ) ! \binom{n}{k} = _n C_k = \frac{n!}{k!(n-k)!} ( k n ) = n C k = k ! ( n − k )! n ! This is known as the Binomial Theorem . See also combinatorial notation .
The binomial coefficients ( n k ) \binom{n}{k} ( k n ) for successive values of n n 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 ( n k ) = ( n − 1 k − 1 ) + ( n − 1 k ) \binom{n}{k} = \binom{n-1}{k-1} + \binom{n-1}{k} ( k n ) = ( k − 1 n − 1 ) + ( k n − 1 ) .
Symmetry : ( n k ) = ( n n − k ) \displaystyle \binom{n}{k} = \binom{n}{n-k} ( k n ) = ( n − k n )
Recurrence (Pascal’s identity) : ( n k ) = ( n − 1 k − 1 ) + ( n − 1 k ) \displaystyle \binom{n}{k} = \binom{n-1}{k-1} + \binom{n-1}{k} ( k n ) = ( k − 1 n − 1 ) + ( k n − 1 )
Sum of coefficients : Setting a = b = 1 a = b = 1 a = b = 1 in the binomial theorem,
∑ k = 0 n ( n k ) = 2 n \sum_{k=0}^{n} \binom{n}{k} = 2^n k = 0 ∑ n ( k n ) = 2 n Alternating sum : Setting a = 1 , b = − 1 a = 1, b = -1 a = 1 , b = − 1 ∑ k = 0 n ( − 1 ) k ( n k ) = 0 \sum_{k=0}^{n} (-1)^k \binom{n}{k} = 0 k = 0 ∑ n ( − 1 ) k ( k n ) = 0 The expansion of ( 1 + x ) n (1+x)^n ( 1 + x ) n is a frequently tested form:
( 1 + x ) n = ( n 0 ) + ( n 1 ) x + ( n 2 ) x 2 + ⋯ + ( n n ) x n (1 + x)^n = \binom{n}{0} + \binom{n}{1}x + \binom{n}{2}x^2 + \cdots + \binom{n}{n}x^n ( 1 + x ) n = ( 0 n ) + ( 1 n ) x + ( 2 n ) x 2 + ⋯ + ( n n ) x n The general term (the ( r + 1 ) (r+1) ( r + 1 ) -th term) is:
T r + 1 = ( n r ) x r , r = 0 , 1 , 2 , … , n T_{r+1} = \binom{n}{r} x^r, \quad r = 0, 1, 2, \ldots, n T r + 1 = ( r n ) x r , r = 0 , 1 , 2 , … , n For ( a + b x ) n (a + bx)^n ( a + b x ) n The general term is:
T r + 1 = ( n r ) a n − r ( b x ) r = ( n r ) a n − r b r x r T_{r+1} = \binom{n}{r} a^{n-r} (bx)^r = \binom{n}{r} a^{n-r} b^r x^r T r + 1 = ( r n ) a n − r ( b x ) r = ( r n ) a n − r b r x r To find the coefficient of x k x^k x k Set r = k r = k r = k and evaluate:
[ c o e f f i c i e n t o f x k ] = ( n k ) a n − k b k [\mathrm{coefficient of } x^k] = \binom{n}{k} a^{n-k} b^k [ coefficientof x k ] = ( k n ) a n − k b k Example: Finding a specific coefficient Find the coefficient of $x^3$ in the expansion of $(2 - 3x)^7$.The general term is T r + 1 = ( 7 r ) 2 7 − r ( − 3 x ) r T_{r+1} = \binom{7}{r} 2^{7-r}(-3x)^r T r + 1 = ( r 7 ) 2 7 − r ( − 3 x ) r .
For the x 3 x^3 x 3 term, set r = 3 r = 3 r = 3 :
( 7 3 ) ⋅ 2 4 ⋅ ( − 3 ) 3 = 35 ⋅ 16 ⋅ ( − 27 ) = − 15 120 \binom{7}{3} \cdot 2^4 \cdot (-3)^3 = 35 \cdot 16 \cdot (-27) = -15\,120 ( 3 7 ) ⋅ 2 4 ⋅ ( − 3 ) 3 = 35 ⋅ 16 ⋅ ( − 27 ) = − 15 120 The coefficient of x 3 x^3 x 3 is − 15 120 -15\,120 − 15 120 .
Example: Finding the constant term Find the constant term in the expansion of $\left(x + \dfrac{2}{x}\right)^6$.
The general term is T r + 1 = ( 6 r ) x 6 − r ( 2 x ) r = ( 6 r ) ⋅ 2 r ⋅ x 6 − 2 r T_{r+1} = \binom{6}{r} x^{6-r} \left(\dfrac{2}{x}\right)^r = \binom{6}{r} \cdot 2^r \cdot x^{6-2r} T r + 1 = ( r 6 ) x 6 − r ( x 2 ) r = ( r 6 ) ⋅ 2 r ⋅ x 6 − 2 r .
For the constant term, 6 − 2 r = 0 ⟹ r = 3 6 - 2r = 0 \implies r = 3 6 − 2 r = 0 ⟹ r = 3 :
( 6 3 ) ⋅ 2 3 = 20 ⋅ 8 = 160 \binom{6}{3} \cdot 2^3 = 20 \cdot 8 = 160 ( 3 6 ) ⋅ 2 3 = 20 ⋅ 8 = 160 The constant term is 160 160 160 .
Example: Finding the middle term Find the middle term in the expansion of $\left(1 + \dfrac{x}{2}\right)^{10}$.Since n = 10 n = 10 n = 10 (even), there is one middle term at position n 2 + 1 = 6 \dfrac{n}{2} + 1 = 6 2 n + 1 = 6 I.e. r = 5 r = 5 r = 5 :
T 6 = ( 10 5 ) ( x 2 ) 5 = 252 ⋅ x 5 32 = 63 8 x 5 T_6 = \binom{10}{5} \left(\frac{x}{2}\right)^5 = 252 \cdot \frac{x^5}{32} = \frac{63}{8} x^5 T 6 = ( 5 10 ) ( 2 x ) 5 = 252 ⋅ 32 x 5 = 8 63 x 5 Given two polynomials f ( x ) f(x) f ( x ) (dividend) and g ( x ) g(x) g ( x ) (divisor) with deg g ( x ) ≥ 1 \deg g(x) \geq 1 deg g ( x ) ≥ 1 Polynomial Long division yields a quotient q ( x ) q(x) q ( x ) and a remainder r ( x ) r(x) r ( x ) such that
F ( x ) = g ( x ) ⋅ q ( x ) + r ( x ) F(x) = g(x) \cdot q(x) + r(x) F ( x ) = g ( x ) ⋅ q ( x ) + r ( x ) Where deg r ( x ) < deg g ( x ) \deg r(x) < \deg g(x) deg r ( x ) < deg g ( x ) or r ( x ) = 0 r(x) = 0 r ( x ) = 0 .
Example: Long division Divide $f(x) = 2x^3 + 3x^2 - 5x + 7$ by $g(x) = x^2 - x + 2$.
X 2 − x + 2 2 x 3 + 3 x 2 − 5 x + 7 2 x 2 x 3 − 2 x 2 + 4 x \cline 2 − 2 2 x 3 5 x 2 − 9 x + 7 2 x 3 5 x 2 − 5 x + 10 \cline 2 − 2 2 x 3 5 x 2 − 4 x − 3 \begin{array}{r|l} X^2 - x + 2 & 2x^3 + 3x^2 - 5x + 7 \\ \hline & 2x \\ & 2x^3 - 2x^2 + 4x \\ \cline{2-2} & \phantom{2x^3} 5x^2 - 9x + 7 \\ & \phantom{2x^3} 5x^2 - 5x + 10 \\ & \cline{2-2} & \phantom{2x^3} \phantom{5x^2} -4x - 3 \end{array} X 2 − x + 2 \cline 2 − 2 2 x 3 + 3 x 2 − 5 x + 7 2 x 2 x 3 − 2 x 2 + 4 x 2 x 3 5 x 2 − 9 x + 7 2 x 3 5 x 2 − 5 x + 10 \cline 2 − 2 2 x 3 5 x 2 − 4 x − 3 Quotient: q ( x ) = 2 x + 5 q(x) = 2x + 5 q ( x ) = 2 x + 5 Remainder: r ( x ) = − 4 x − 3 r(x) = -4x - 3 r ( x ) = − 4 x − 3 .
Verification: ( x 2 − x + 2 ) ( 2 x + 5 ) + ( − 4 x − 3 ) = 2 x 3 + 3 x 2 − 5 x + 7 (x^2 - x + 2)(2x + 5) + (-4x - 3) = 2x^3 + 3x^2 - 5x + 7 ( x 2 − x + 2 ) ( 2 x + 5 ) + ( − 4 x − 3 ) = 2 x 3 + 3 x 2 − 5 x + 7 .
When a polynomial f ( x ) f(x) f ( x ) is divided by ( x − c ) (x - c) ( x − c ) The remainder is f ( c ) f(c) f ( c ) .
Proof. By the division algorithm, f ( x ) = ( x − c ) ⋅ q ( x ) + r f(x) = (x-c) \cdot q(x) + r f ( x ) = ( x − c ) ⋅ q ( x ) + r where r r r is a constant (since deg r < deg ( x − c ) = 1 \deg r < \deg(x-c) = 1 deg r < deg ( x − c ) = 1 ). Substituting x = c x = c x = c : f ( c ) = 0 ⋅ q ( c ) + r = r f(c) = 0 \cdot q(c) + r = r f ( c ) = 0 ⋅ q ( c ) + r = r .
For a divisor of the form ( a x − b ) (ax - b) ( a x − b ) Set x = b a x = \dfrac{b}{a} x = a b to obtain the remainder f ( b a ) f\!\left(\dfrac{b}{a}\right) f ( a b ) .
Example: Remainder theorem Find the remainder when $f(x) = 3x^4 - 2x^3 + x - 5$ is divided by $(x - 2)$.By the Remainder Theorem, the remainder is f ( 2 ) f(2) f ( 2 ) :
F ( 2 ) = 3 ( 16 ) − 2 ( 8 ) + 2 − 5 = 48 − 16 + 2 − 5 = 29 F(2) = 3(16) - 2(8) + 2 - 5 = 48 - 16 + 2 - 5 = 29 F ( 2 ) = 3 ( 16 ) − 2 ( 8 ) + 2 − 5 = 48 − 16 + 2 − 5 = 29 Example: Remainder with a non-monic linear divisor Find the remainder when $f(x) = 2x^3 - 5x + 3$ is divided by $(2x + 1)$.
Set 2 x + 1 = 0 ⟹ x = − 1 2 2x + 1 = 0 \implies x = -\dfrac{1}{2} 2 x + 1 = 0 ⟹ x = − 2 1 . The remainder is:
F ( − 1 2 ) = 2 ( − 1 2 ) 3 − 5 ( − 1 2 ) + 3 = − 1 4 + 5 2 + 3 = 21 4 F\!\left(-\frac{1}{2}\right) = 2\left(-\frac{1}{2}\right)^3 - 5\left(-\frac{1}{2}\right) + 3 = -\frac{1}{4} + \frac{5}{2} + 3 = \frac{21}{4} F ( − 2 1 ) = 2 ( − 2 1 ) 3 − 5 ( − 2 1 ) + 3 = − 4 1 + 2 5 + 3 = 4 21 ( x − c ) (x - c) ( x − c ) is a factor of f ( x ) f(x) f ( x ) if and only if f ( c ) = 0 f(c) = 0 f ( c ) = 0 .
This follows directly from the Remainder Theorem: if the remainder f ( c ) = 0 f(c) = 0 f ( c ) = 0 Then f ( x ) = ( x − c ) ⋅ q ( x ) f(x) = (x-c) \cdot q(x) f ( x ) = ( x − c ) ⋅ q ( x ) So ( x − c ) (x-c) ( x − c ) divides f ( x ) f(x) f ( x ) exactly.
Corollary. ( a x − b ) (ax - b) ( a x − b ) is a factor of f ( x ) f(x) f ( x ) if and only if f ( b a ) = 0 f\!\left(\dfrac{b}{a}\right) = 0 f ( a b ) = 0 .
Example: Factor theorem Show that $(x - 3)$ is a factor of $f(x) = x^3 - 4x^2 + x + 6$ and hence factorize $f(x)$ completely.f ( 3 ) = 27 − 36 + 3 + 6 = 0 f(3) = 27 - 36 + 3 + 6 = 0 f ( 3 ) = 27 − 36 + 3 + 6 = 0 So ( x − 3 ) (x - 3) ( x − 3 ) is a factor.
By division (or by comparing coefficients), f ( x ) = ( x − 3 ) ( x 2 − x − 2 ) = ( x − 3 ) ( x − 2 ) ( x + 1 ) f(x) = (x - 3)(x^2 - x - 2) = (x-3)(x-2)(x+1) f ( x ) = ( x − 3 ) ( x 2 − x − 2 ) = ( x − 3 ) ( x − 2 ) ( x + 1 ) .
Example: Finding an unknown constant If $(x + 2)$ is a factor of $f(x) = x^3 + ax^2 - 3x + 10$Find $a$.
By the Factor Theorem, f ( − 2 ) = 0 f(-2) = 0 f ( − 2 ) = 0 :
( − 2 ) 3 + a ( − 2 ) 2 − 3 ( − 2 ) + 10 = 0 ⟹ − 8 + 4 a + 6 + 10 = 0 ⟹ 4 a + 8 = 0 ⟹ a = − 2 (-2)^3 + a(-2)^2 - 3(-2) + 10 = 0 \implies -8 + 4a + 6 + 10 = 0 \implies 4a + 8 = 0 \implies a = -2 ( − 2 ) 3 + a ( − 2 ) 2 − 3 ( − 2 ) + 10 = 0 ⟹ − 8 + 4 a + 6 + 10 = 0 ⟹ 4 a + 8 = 0 ⟹ a = − 2 HCF (highest common factor) Factor out the greatest common factor from all terms. 6 x 3 − 9 x 2 + 12 x = 3 x ( 2 x 2 − 3 x + 4 ) 6x^3 - 9x^2 + 12x = 3x(2x^2 - 3x + 4) 6 x 3 − 9 x 2 + 12 x = 3 x ( 2 x 2 − 3 x + 4 ) Grouping $$ X^3 + 2x^2 - 3x - 6 = x^2(x+2) - 3(x+2) = (x^2 - 3)(x+2) $$
Difference of squares $$ A^2 - b^2 = (a+b)(a-b) $$ 4 x 2 − 25 = ( 2 x + 5 ) ( 2 x − 5 ) 4x^2 - 25 = (2x+5)(2x-5) 4 x 2 − 25 = ( 2 x + 5 ) ( 2 x − 5 ) 9 x 4 − 16 y 2 = ( 3 x 2 + 4 y ) ( 3 x 2 − 4 y ) 9x^4 - 16y^2 = (3x^2 + 4y)(3x^2 - 4y) 9 x 4 − 16 y 2 = ( 3 x 2 + 4 y ) ( 3 x 2 − 4 y ) Sum and difference of cubes $$ A^3 + b^3 = (a+b)(a^2 - ab + b^2) $$
A 3 − b 3 = ( a − b ) ( a 2 + a b + b 2 ) A^3 - b^3 = (a-b)(a^2 + ab + b^2) A 3 − b 3 = ( a − b ) ( a 2 + ab + b 2 ) 8 x 3 + 27 = ( 2 x + 3 ) ( 4 x 2 − 6 x + 9 ) 8x^3 + 27 = (2x+3)(4x^2 - 6x + 9) 8 x 3 + 27 = ( 2 x + 3 ) ( 4 x 2 − 6 x + 9 ) 125 x 3 − 8 = ( 5 x − 2 ) ( 25 x 2 + 10 x + 4 ) 125x^3 - 8 = (5x-2)(25x^2 + 10x + 4) 125 x 3 − 8 = ( 5 x − 2 ) ( 25 x 2 + 10 x + 4 ) Quadratic trinomials For $ax^2 + bx + c$Find two numbers $p$ and $q$ such that $pq = ac$ and $p + q = b$. 6 x 2 − 7 x + 2 = 6 x 2 − 4 x − 3 x + 2 = 2 x ( 3 x − 2 ) − 1 ( 3 x − 2 ) = ( 2 x − 1 ) ( 3 x − 2 ) 6x^2 - 7x + 2 = 6x^2 - 4x - 3x + 2 = 2x(3x - 2) - 1(3x - 2) = (2x - 1)(3x - 2) 6 x 2 − 7 x + 2 = 6 x 2 − 4 x − 3 x + 2 = 2 x ( 3 x − 2 ) − 1 ( 3 x − 2 ) = ( 2 x − 1 ) ( 3 x − 2 ) If the discriminant Δ = b 2 − 4 a c < 0 \Delta = b^2 - 4ac < 0 Δ = b 2 − 4 a c < 0 The quadratic cannot be factorized over R \mathbb{R} R .
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.
Example: Complete factorization Factorize $f(x) = 2x^3 + x^2 - 13x + 6$ completely.
Test integer factors of 6 6 6 : try x = 1 x = 1 x = 1 .
f ( 1 ) = 2 + 1 − 13 + 6 = − 4 ≠ 0 f(1) = 2 + 1 - 13 + 6 = -4 \neq 0 f ( 1 ) = 2 + 1 − 13 + 6 = − 4 = 0
Try x = 2 x = 2 x = 2 :
f ( 2 ) = 16 + 4 − 26 + 6 = 0 f(2) = 16 + 4 - 26 + 6 = 0 f ( 2 ) = 16 + 4 − 26 + 6 = 0 So ( x − 2 ) (x-2) ( x − 2 ) is a factor.
Dividing: f ( x ) = ( x − 2 ) ( 2 x 2 + 5 x − 3 ) = ( x − 2 ) ( 2 x − 1 ) ( x + 3 ) f(x) = (x-2)(2x^2 + 5x - 3) = (x-2)(2x-1)(x+3) f ( x ) = ( x − 2 ) ( 2 x 2 + 5 x − 3 ) = ( x − 2 ) ( 2 x − 1 ) ( x + 3 ) .
To solve f ( x ) = 0 f(x) = 0 f ( x ) = 0 :
Factorize f ( x ) f(x) f ( x ) into linear (and possibly irreducible quadratic) factors. Set each factor equal to zero and solve. Example Solve $x^3 - 3x^2 - 4x + 12 = 0$.Factorizing by grouping: x 2 ( x − 3 ) − 4 ( x − 3 ) = ( x 2 − 4 ) ( x − 3 ) = ( x − 2 ) ( x + 2 ) ( x − 3 ) = 0 x^2(x-3) - 4(x-3) = (x^2 - 4)(x-3) = (x-2)(x+2)(x-3) = 0 x 2 ( x − 3 ) − 4 ( x − 3 ) = ( x 2 − 4 ) ( x − 3 ) = ( x − 2 ) ( x + 2 ) ( x − 3 ) = 0 .
Solutions: x = 2 , − 2 , 3 x = 2, -2, 3 x = 2 , − 2 , 3 .
For a quadratic equation a x 2 + b x + c = 0 ax^2 + bx + c = 0 a x 2 + b x + c = 0 with roots α \alpha α and β \beta β :
α + β = − b a , α β = c a \alpha + \beta = -\frac{b}{a}, \qquad \alpha\beta = \frac{c}{a} α + β = − a b , α β = a c These relationships between roots and coefficients are essential for DSE problems involving root Manipulation.
Example: Finding a new equation from roots If $\alpha$ and $\beta$ are roots of $2x^2 - 5x + 1 = 0$Find the equation whose roots are $\alpha^2$ and $\beta^2$.
From Vieta: α + β = 5 2 \alpha + \beta = \dfrac{5}{2} α + β = 2 5 , α β = 1 2 \alpha\beta = \dfrac{1}{2} α β = 2 1 .
Sum of new roots:
α 2 + β 2 = ( α + β ) 2 − 2 α β = 25 4 − 1 = 21 4 \alpha^2 + \beta^2 = (\alpha + \beta)^2 - 2\alpha\beta = \frac{25}{4} - 1 = \frac{21}{4} α 2 + β 2 = ( α + β ) 2 − 2 α β = 4 25 − 1 = 4 21 Product of new roots:
α 2 β 2 = ( α β ) 2 = 1 4 \alpha^2 \beta^2 = (\alpha\beta)^2 = \frac{1}{4} α 2 β 2 = ( α β ) 2 = 4 1 The required equation is x 2 − 21 4 x + 1 4 = 0 x^2 - \dfrac{21}{4}x + \dfrac{1}{4} = 0 x 2 − 4 21 x + 4 1 = 0 Or equivalently 4 x 2 − 21 x + 1 = 0 4x^2 - 21x + 1 = 0 4 x 2 − 21 x + 1 = 0 .
Example: Symmetric expressions in roots If $\alpha$ and $\beta$ are roots of $x^2 - 6x + 4 = 0$Find the value of $\dfrac{1}{\alpha} + \dfrac{1}{\beta}$. 1 α + 1 β = α + β α β = 6 4 = 3 2 \frac{1}{\alpha} + \frac{1}{\beta} = \frac{\alpha + \beta}{\alpha\beta} = \frac{6}{4} = \frac{3}{2} α 1 + β 1 = α β α + β = 4 6 = 2 3 Extension: Vieta's formulas for cubic equations For $ax^3 + bx^2 + cx + d = 0$ with roots $\alpha, \beta, \gamma$:
α + β + γ = − b a , α β + β γ + γ α = c a , α β γ = − d a \alpha + \beta + \gamma = -\frac{b}{a}, \quad \alpha\beta + \beta\gamma + \gamma\alpha = \frac{c}{a}, \quad \alpha\beta\gamma = -\frac{d}{a} α + β + γ = − a b , α β + β γ + γ α = a c , α β γ = − a d Wrap-up Questions 1. **Question:** Expand $(1 + 2x)^6$ and find the coefficient of $x^4$. ### DetailsAnswer Using the binomial theorem: ( 1 + 2 x ) 6 = ∑ k = 0 6 ( 6 k ) ( 2 x ) k (1 + 2x)^6 = \sum_{k=0}^{6} \binom{6}{k}(2x)^k ( 1 + 2 x ) 6 = k = 0 ∑ 6 ( k 6 ) ( 2 x ) k The coefficient of x 4 x^4 x 4 corresponds to k = 4 k = 4 k = 4 :
( 6 4 ) ⋅ 2 4 = 15 ⋅ 16 = 240 \binom{6}{4} \cdot 2^4 = 15 \cdot 16 = 240 ( 4 6 ) ⋅ 2 4 = 15 ⋅ 16 = 240 The full expansion is 1 + 12 x + 60 x 2 + 160 x 3 + 240 x 4 + 192 x 5 + 64 x 6 1 + 12x + 60x^2 + 160x^3 + 240x^4 + 192x^5 + 64x^6 1 + 12 x + 60 x 2 + 160 x 3 + 240 x 4 + 192 x 5 + 64 x 6 .
Question: Find the constant term in the expansion of ( x 2 + 1 x ) 9 \left(x^2 + \dfrac{1}{x}\right)^9 ( x 2 + x 1 ) 9 .Answer The general term is $T_{r+1} = \binom{9}{r} (x^2)^{9-r} \cdot \left(\dfrac{1}{x}\right)^r = \binom{9}{r} x^{18 - 3r}$.
For the constant term: 18 − 3 r = 0 ⟹ r = 6 18 - 3r = 0 \implies r = 6 18 − 3 r = 0 ⟹ r = 6 .
( 9 6 ) = ( 9 3 ) = 84 \binom{9}{6} = \binom{9}{3} = 84 ( 6 9 ) = ( 3 9 ) = 84 The constant term is 84 84 84 .
Question: When f ( x ) = 2 x 3 + a x 2 + b x − 6 f(x) = 2x^3 + ax^2 + bx - 6 f ( x ) = 2 x 3 + a x 2 + b x − 6 is divided by ( x − 1 ) (x-1) ( x − 1 ) The remainder is − 4 -4 − 4 . When divided by ( x + 2 ) (x+2) ( x + 2 ) The remainder is 30 30 30 . Find a a a and b b b .Answer By the Remainder Theorem:f ( 1 ) = 2 + a + b − 6 = − 4 ⟹ a + b = 0 ( i ) f(1) = 2 + a + b - 6 = -4 \implies a + b = 0 \quad \mathrm{(i)} f ( 1 ) = 2 + a + b − 6 = − 4 ⟹ a + b = 0 ( i ) f ( − 2 ) = − 16 + 4 a − 2 b − 6 = 30 ⟹ 4 a − 2 b = 52 ⟹ 2 a − b = 26 ( i i ) f(-2) = -16 + 4a - 2b - 6 = 30 \implies 4a - 2b = 52 \implies 2a - b = 26 \quad \mathrm{(ii)} f ( − 2 ) = − 16 + 4 a − 2 b − 6 = 30 ⟹ 4 a − 2 b = 52 ⟹ 2 a − b = 26 ( ii ) Adding (i) and (ii): 3 a = 26 ⟹ a = 26 3 3a = 26 \implies a = \dfrac{26}{3} 3 a = 26 ⟹ a = 3 26 .
From (i): b = − 26 3 b = -\dfrac{26}{3} b = − 3 26 .
Question: Given that ( x − 3 ) (x - 3) ( x − 3 ) and ( x + 1 ) (x + 1) ( x + 1 ) are factors of f ( x ) = x 3 + a x 2 + b x + c f(x) = x^3 + ax^2 + bx + c f ( x ) = x 3 + a x 2 + b x + c Find a a a , b b b And c c c . Hence factorize f ( x ) f(x) f ( x ) completely.Answer By the Factor Theorem:
f ( 3 ) = 27 + 9 a + 3 b + c = 0 ( i ) f(3) = 27 + 9a + 3b + c = 0 \quad \mathrm{(i)} f ( 3 ) = 27 + 9 a + 3 b + c = 0 ( i ) f ( − 1 ) = − 1 + a − b + c = 0 ( i i ) f(-1) = -1 + a - b + c = 0 \quad \mathrm{(ii)} f ( − 1 ) = − 1 + a − b + c = 0 ( ii ) Since ( x − 3 ) ( x + 1 ) = x 2 − 2 x − 3 (x-3)(x+1) = x^2 - 2x - 3 ( x − 3 ) ( x + 1 ) = x 2 − 2 x − 3 is a factor, write f ( x ) = ( x 2 − 2 x − 3 ) ( x − d ) f(x) = (x^2 - 2x - 3)(x - d) f ( x ) = ( x 2 − 2 x − 3 ) ( x − d ) for some Constant d d d .
Expanding: f ( x ) = x 3 − ( d + 2 ) x 2 + ( 2 d − 3 ) x + 3 d f(x) = x^3 - (d+2)x^2 + (2d - 3)x + 3d f ( x ) = x 3 − ( d + 2 ) x 2 + ( 2 d − 3 ) x + 3 d .
Comparing with f ( x ) = x 3 + a x 2 + b x + c f(x) = x^3 + ax^2 + bx + c f ( x ) = x 3 + a x 2 + b x + c :
a = − ( d + 2 ) a = -(d+2) a = − ( d + 2 ) b = 2 d − 3 b = 2d - 3 b = 2 d − 3 c = 3 d c = 3d c = 3 d Also f ( 3 ) = 0 f(3) = 0 f ( 3 ) = 0 gives 27 + 9 a + 3 b + c = 0 27 + 9a + 3b + c = 0 27 + 9 a + 3 b + c = 0 .
Using f ( − 1 ) = 0 f(-1) = 0 f ( − 1 ) = 0 : − 1 + a − b + c = 0 -1 + a - b + c = 0 − 1 + a − b + c = 0 .
Subtracting (ii) from (i): 28 + 8 a + 4 b = 0 ⟹ 7 + 2 a + b = 0 ( i i i ) 28 + 8a + 4b = 0 \implies 7 + 2a + b = 0 \quad \mathrm{(iii)} 28 + 8 a + 4 b = 0 ⟹ 7 + 2 a + b = 0 ( iii ) .
From (ii): a − b + c = 1 a - b + c = 1 a − b + c = 1 .
Substituting a = -(d+2)$$b = 2d-3$$c = 3d into (i):
27 + 9 ( − d − 2 ) + 3 ( 2 d − 3 ) + 3 d = 27 − 9 d − 18 + 6 d − 9 + 3 d = 0 27 + 9(-d-2) + 3(2d-3) + 3d = 27 - 9d - 18 + 6d - 9 + 3d = 0 27 + 9 ( − d − 2 ) + 3 ( 2 d − 3 ) + 3 d = 27 − 9 d − 18 + 6 d − 9 + 3 d = 0 This simplifies to 0 = 0 0 = 0 0 = 0 Which is consistent. From (ii):
− 1 − d − 2 + 3 − 2 d + 3 d = 0 ⟹ 0 = 0 -1 - d - 2 + 3 - 2d + 3d = 0 \implies 0 = 0 − 1 − d − 2 + 3 − 2 d + 3 d = 0 ⟹ 0 = 0 We need one more condition. Since the leading coefficient is 1 1 1 and f ( x ) = ( x − 3 ) ( x + 1 ) ( x − d ) f(x) = (x-3)(x+1)(x - d) f ( x ) = ( x − 3 ) ( x + 1 ) ( x − d ) We Must have the constant term c = 3 d c = 3d c = 3 d . But f ( x ) f(x) f ( x ) has constant term c c c . Comparing: c = 3 d c = 3d c = 3 d . We have One free parameter, so let us use f ( 0 ) = c = 3 d f(0) = c = 3d f ( 0 ) = c = 3 d But we need another constraint.
Let us equate the x 2 x^2 x 2 coefficient: a = − ( d + 2 ) a = -(d+2) a = − ( d + 2 ) . The x x x coefficient: b = 2 d − 3 b = 2d - 3 b = 2 d − 3 . Substituting Into (iii): 7 + 2 ( − d − 2 ) + ( 2 d − 3 ) = 7 − 2 d − 4 + 2 d − 3 = 0 7 + 2(-d-2) + (2d-3) = 7 - 2d - 4 + 2d - 3 = 0 7 + 2 ( − d − 2 ) + ( 2 d − 3 ) = 7 − 2 d − 4 + 2 d − 3 = 0 . Again automatically satisfied.
Without additional information, d d d is undetermined. However, since ( x − 3 ) (x-3) ( x − 3 ) and ( x + 1 ) (x+1) ( 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 \alpha + \beta + \gamma = -a α + β + γ = − a And α β γ = − c \alpha\beta\gamma = -c α β γ = − c . With α = 3 , β = − 1 \alpha = 3, \beta = -1 α = 3 , β = − 1 :
3 + ( − 1 ) + γ = − a ⟹ 2 + γ = − a 3 + (-1) + \gamma = -a \implies 2 + \gamma = -a 3 + ( − 1 ) + γ = − a ⟹ 2 + γ = − a 3 ⋅ ( − 1 ) ⋅ γ = − c ⟹ − 3 γ = − c ⟹ c = 3 γ 3 \cdot (-1) \cdot \gamma = -c \implies -3\gamma = -c \implies c = 3\gamma 3 ⋅ ( − 1 ) ⋅ γ = − c ⟹ − 3 γ = − c ⟹ c = 3 γ There are infinitely many cubics with ( x − 3 ) (x-3) ( x − 3 ) and ( x + 1 ) (x+1) ( x + 1 ) as factors. Assuming the problem intends a Monic cubic (which it is, with leading coefficient 1 1 1 ), we write f ( x ) = ( x − 3 ) ( x + 1 ) ( x − d ) f(x) = (x-3)(x+1)(x - d) f ( x ) = ( x − 3 ) ( x + 1 ) ( x − d ) where d d 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 ) f(x) = (x-3)(x+1)(x-d) f ( x ) = ( x − 3 ) ( x + 1 ) ( x − d ) for any real d d d .
Question: Factorize x 4 − 5 x 2 + 4 x^4 - 5x^2 + 4 x 4 − 5 x 2 + 4 completely.Answer Let $u = x^2$: U 2 − 5 u + 4 = ( u − 1 ) ( u − 4 ) = ( x 2 − 1 ) ( x 2 − 4 ) = ( x − 1 ) ( x + 1 ) ( x − 2 ) ( x + 2 ) U^2 - 5u + 4 = (u-1)(u-4) = (x^2 - 1)(x^2 - 4) = (x-1)(x+1)(x-2)(x+2) U 2 − 5 u + 4 = ( u − 1 ) ( u − 4 ) = ( x 2 − 1 ) ( x 2 − 4 ) = ( x − 1 ) ( x + 1 ) ( x − 2 ) ( x + 2 ) Question: If α \alpha α and β \beta β are roots of 3 x 2 − 8 x + 2 = 0 3x^2 - 8x + 2 = 0 3 x 2 − 8 x + 2 = 0 Find the value of α 3 + β 3 \alpha^3 + \beta^3 α 3 + β 3 without solving the equation.Answer From Vieta: $\alpha + \beta = \dfrac{8}{3}$$\alpha\beta = \dfrac{2}{3}$.
α 3 + β 3 = ( α + β ) 3 − 3 α β ( α + β ) = ( 8 3 ) 3 − 3 ⋅ 2 3 ⋅ 8 3 \alpha^3 + \beta^3 = (\alpha + \beta)^3 - 3\alpha\beta(\alpha + \beta) = \left(\frac{8}{3}\right)^3 - 3 \cdot \frac{2}{3} \cdot \frac{8}{3} α 3 + β 3 = ( α + β ) 3 − 3 α β ( α + β ) = ( 3 8 ) 3 − 3 ⋅ 3 2 ⋅ 3 8 = 512 27 − 48 9 = 512 27 − 144 27 = 368 27 = \frac{512}{27} - \frac{48}{9} = \frac{512}{27} - \frac{144}{27} = \frac{368}{27} = 27 512 − 9 48 = 27 512 − 27 144 = 27 368 Question: Expand ( 1 − 3 x ) 5 (1 - 3x)^5 ( 1 − 3 x ) 5 in ascending powers of x x x up to and including the term in x 3 x^3 x 3 . Use the expansion to find an approximate value of ( 0.97 ) 5 (0.97)^5 ( 0.97 ) 5 .Answer $$ (1-3x)^5 = \binom{5}{0} + \binom{5}{1}(-3x) + \binom{5}{2}(-3x)^2 + \binom{5}{3}(-3x)^3 + \cdots $$ = 1 − 15 x + 90 x 2 − 270 x 3 + ⋯ = 1 - 15x + 90x^2 - 270x^3 + \cdots = 1 − 15 x + 90 x 2 − 270 x 3 + ⋯ Set 1 − 3 x = 0.97 ⟹ x = 0.01 1 - 3x = 0.97 \implies x = 0.01 1 − 3 x = 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 (0.97)^5 \approx 1 - 15(0.01) + 90(0.0001) - 270(0.000001) = 1 - 0.15 + 0.009 - 0.00027 = 0.85873 ( 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 ) = x 3 + p x 2 + q x + 6 f(x) = x^3 + px^2 + qx + 6 f ( x ) = x 3 + p x 2 + q x + 6 is divided by ( x − 1 ) (x-1) ( x − 1 ) is 12 12 12 . The Remainder when f ( x ) f(x) f ( x ) is divided by ( x + 1 ) (x+1) ( x + 1 ) is 18 18 18 . Find p p p and q q q .Answer f ( 1 ) = 1 + p + q + 6 = 12 ⟹ p + q = 5 ( i ) f(1) = 1 + p + q + 6 = 12 \implies p + q = 5 \quad \mathrm{(i)} f ( 1 ) = 1 + p + q + 6 = 12 ⟹ p + q = 5 ( i ) f ( − 1 ) = − 1 + p − q + 6 = 18 ⟹ p − q = 13 ( i i ) f(-1) = -1 + p - q + 6 = 18 \implies p - q = 13 \quad \mathrm{(ii)} f ( − 1 ) = − 1 + p − q + 6 = 18 ⟹ p − q = 13 ( ii ) Adding: 2 p = 18 ⟹ p = 9 2p = 18 \implies p = 9 2 p = 18 ⟹ p = 9 .
From (i): q = − 4 q = -4 q = − 4 .
Question: Prove that ( n r ) = ( n n − r ) \binom{n}{r} = \binom{n}{n-r} ( r n ) = ( n − r n ) using the definition of binomial Coefficients.Answer $$ \binom{n}{n-r} = \frac{n!}{(n-r)!\,[n-(n-r)]!} = \frac{n!}{(n-r)!\,r!} = \binom{n}{r} $$Question: Find the coefficient of x 5 x^5 x 5 in the expansion of ( 1 + x ) 8 ( 1 − x ) 6 (1 + x)^8(1 - x)^6 ( 1 + x ) 8 ( 1 − x ) 6 .Answer Expand each factor using the binomial theorem and collect the $x^5$ terms.
From ( 1 + x ) 8 (1+x)^8 ( 1 + x ) 8 The terms contributing to x 5 x^5 x 5 are x k x^k x k where k ≤ 5 k \leq 5 k ≤ 5 ; from ( 1 − x ) 6 (1-x)^6 ( 1 − x ) 6 The term ( − x ) 5 − k (-x)^{5-k} ( − x ) 5 − k .
The coefficient of x 5 x^5 x 5 is:
∑ k = 0 5 ( 8 k ) ( − 1 ) 5 − k ( 6 5 − k ) \sum_{k=0}^{5} \binom{8}{k}(-1)^{5-k}\binom{6}{5-k} k = 0 ∑ 5 ( k 8 ) ( − 1 ) 5 − k ( 5 − k 6 ) Evaluating each term:
k = 0 k=0 k = 0 : ( 8 0 ) ( − 1 ) 5 ( 6 5 ) = 1 ⋅ ( − 1 ) ⋅ 6 = − 6 \binom{8}{0}(-1)^5\binom{6}{5} = 1 \cdot (-1) \cdot 6 = -6 ( 0 8 ) ( − 1 ) 5 ( 5 6 ) = 1 ⋅ ( − 1 ) ⋅ 6 = − 6 k = 1 k=1 k = 1 : ( 8 1 ) ( − 1 ) 4 ( 6 4 ) = 8 ⋅ 1 ⋅ 15 = 120 \binom{8}{1}(-1)^4\binom{6}{4} = 8 \cdot 1 \cdot 15 = 120 ( 1 8 ) ( − 1 ) 4 ( 4 6 ) = 8 ⋅ 1 ⋅ 15 = 120 k = 2 k=2 k = 2 : ( 8 2 ) ( − 1 ) 3 ( 6 3 ) = 28 ⋅ ( − 1 ) ⋅ 20 = − 560 \binom{8}{2}(-1)^3\binom{6}{3} = 28 \cdot (-1) \cdot 20 = -560 ( 2 8 ) ( − 1 ) 3 ( 3 6 ) = 28 ⋅ ( − 1 ) ⋅ 20 = − 560 k = 3 k=3 k = 3 : ( 8 3 ) ( − 1 ) 2 ( 6 2 ) = 56 ⋅ 1 ⋅ 15 = 840 \binom{8}{3}(-1)^2\binom{6}{2} = 56 \cdot 1 \cdot 15 = 840 ( 3 8 ) ( − 1 ) 2 ( 2 6 ) = 56 ⋅ 1 ⋅ 15 = 840 k = 4 k=4 k = 4 : ( 8 4 ) ( − 1 ) 1 ( 6 1 ) = 70 ⋅ ( − 1 ) ⋅ 6 = − 420 \binom{8}{4}(-1)^1\binom{6}{1} = 70 \cdot (-1) \cdot 6 = -420 ( 4 8 ) ( − 1 ) 1 ( 1 6 ) = 70 ⋅ ( − 1 ) ⋅ 6 = − 420 k = 5 k=5 k = 5 : ( 8 5 ) ( − 1 ) 0 ( 6 0 ) = 56 ⋅ 1 ⋅ 1 = 56 \binom{8}{5}(-1)^0\binom{6}{0} = 56 \cdot 1 \cdot 1 = 56 ( 5 8 ) ( − 1 ) 0 ( 0 6 ) = 56 ⋅ 1 ⋅ 1 = 56 Sum: − 6 + 120 − 560 + 840 − 420 + 56 = 30 -6 + 120 - 560 + 840 - 420 + 56 = 30 − 6 + 120 − 560 + 840 − 420 + 56 = 30 .
The coefficient of x 5 x^5 x 5 is 30 30 30 .
Question: Let α \alpha α and β \beta β be the roots of x 2 − 7 x + 3 = 0 x^2 - 7x + 3 = 0 x 2 − 7 x + 3 = 0 . Form a quadratic Equation whose roots are 1 α \dfrac{1}{\alpha} α 1 and 1 β \dfrac{1}{\beta} β 1 .Answer From Vieta: $\alpha + \beta = 7$$\alpha\beta = 3$.Sum of new roots: 1 α + 1 β = α + β α β = 7 3 \dfrac{1}{\alpha} + \dfrac{1}{\beta} = \dfrac{\alpha + \beta}{\alpha\beta} = \dfrac{7}{3} α 1 + β 1 = α β α + β = 3 7 .
Product of new roots: 1 α ⋅ 1 β = 1 3 \dfrac{1}{\alpha} \cdot \dfrac{1}{\beta} = \dfrac{1}{3} α 1 ⋅ β 1 = 3 1 .
The equation is x 2 − 7 3 x + 1 3 = 0 x^2 - \dfrac{7}{3}x + \dfrac{1}{3} = 0 x 2 − 3 7 x + 3 1 = 0 Or 3 x 2 − 7 x + 1 = 0 3x^2 - 7x + 1 = 0 3 x 2 − 7 x + 1 = 0 .
Question: Factorize f ( x ) = x 3 − 3 x 2 + 4 f(x) = x^3 - 3x^2 + 4 f ( x ) = x 3 − 3 x 2 + 4 completely.Answer Test integer factors of $4$: try $x = -1$.
f ( − 1 ) = − 1 − 3 + 4 = 0 f(-1) = -1 - 3 + 4 = 0 f ( − 1 ) = − 1 − 3 + 4 = 0 So ( x + 1 ) (x+1) ( x + 1 ) is a factor.
Dividing: f ( x ) = ( x + 1 ) ( x 2 − 4 x + 4 ) = ( x + 1 ) ( x − 2 ) 2 f(x) = (x+1)(x^2 - 4x + 4) = (x+1)(x-2)^2 f ( x ) = ( x + 1 ) ( x 2 − 4 x + 4 ) = ( x + 1 ) ( x − 2 ) 2 .
Tip
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 for instructions on self-marking and building a personal test matrix.
For polynomial problems in DSE Paper 1:
When using the remainder theorem, write “By the Remainder Theorem, the remainder is f ( c ) f(c) f ( c ) ” before computing. When using the factor theorem, show that f ( c ) = 0 f(c) = 0 f ( c ) = 0 before stating that ( x − c ) (x - c) ( 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.
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).Worked Example 13: Cubic with given conditions
The polynomial f ( x ) = x 3 + a x 2 + b x − 12 f(x) = x^3 + ax^2 + bx - 12 f ( x ) = x 3 + a x 2 + b x − 12 is divisible by ( x − 3 ) (x - 3) ( x − 3 ) and f ( 1 ) = − 18 f(1) = -18 f ( 1 ) = − 18 . Find a$$b And factorise f ( x ) f(x) f ( x ) completely.
Solution f ( 3 ) = 0 f(3) = 0 f ( 3 ) = 0 : 27 + 9 a + 3 b − 12 = 0 ⟹ 9 a + 3 b = − 15 ⟹ 3 a + b = − 5 (i) 27 + 9a + 3b - 12 = 0 \implies 9a + 3b = -15 \implies 3a + b = -5 \quad \text{(i)} 27 + 9 a + 3 b − 12 = 0 ⟹ 9 a + 3 b = − 15 ⟹ 3 a + b = − 5 (i) .
f ( 1 ) = − 18 f(1) = -18 f ( 1 ) = − 18 : 1 + a + b − 12 = − 18 ⟹ a + b = − 7 (ii) 1 + a + b - 12 = -18 \implies a + b = -7 \quad \text{(ii)} 1 + a + b − 12 = − 18 ⟹ a + b = − 7 (ii) .
(ii) from (i): 2 a = 2 ⟹ a = 1 2a = 2 \implies a = 1 2 a = 2 ⟹ a = 1 . From (ii): b = − 8 b = -8 b = − 8 .
f ( x ) = x 3 + x 2 − 8 x − 12 f(x) = x^3 + x^2 - 8x - 12 f ( x ) = x 3 + x 2 − 8 x − 12 .
Since ( x − 3 ) (x - 3) ( x − 3 ) is a factor: f ( x ) = ( x − 3 ) ( x 2 + 4 x + 4 ) = ( x − 3 ) ( x + 2 ) 2 f(x) = (x - 3)(x^2 + 4x + 4) = (x - 3)(x + 2)^2 f ( x ) = ( x − 3 ) ( x 2 + 4 x + 4 ) = ( x − 3 ) ( x + 2 ) 2 .
Worked Example 14: Sum of coefficients
Find the sum of all coefficients of ( 2 x − 3 ) 5 (2x - 3)^5 ( 2 x − 3 ) 5 .
Solution The sum of coefficients equals f ( 1 ) f(1) f ( 1 ) where f ( x ) = ( 2 x − 3 ) 5 f(x) = (2x - 3)^5 f ( x ) = ( 2 x − 3 ) 5 .
f ( 1 ) = ( 2 − 3 ) 5 = ( − 1 ) 5 = − 1 f(1) = (2 - 3)^5 = (-1)^5 = -1 f ( 1 ) = ( 2 − 3 ) 5 = ( − 1 ) 5 = − 1
Worked Example 15: Remainder when divided by a quadratic
Find the remainder when f ( x ) = x 4 + 2 x 3 − x 2 + 3 f(x) = x^4 + 2x^3 - x^2 + 3 f ( x ) = x 4 + 2 x 3 − x 2 + 3 is divided by x 2 − x + 1 x^2 - x + 1 x 2 − x + 1 .
Solution Since the divisor is degree 2, the remainder has degree at most 1: r ( x ) = a x + b r(x) = ax + b r ( x ) = a x + b .
The roots of x 2 − x + 1 = 0 x^2 - x + 1 = 0 x 2 − x + 1 = 0 are ω \omega ω and ω 2 \omega^2 ω 2 (complex cube roots of unity, ω 3 = 1 \omega^3 = 1 ω 3 = 1 ).
By the remainder theorem for quadratic divisors:
f ( ω ) = a ω + b and f ( ω 2 ) = a ω 2 + b f(\omega) = a\omega + b \quad \text{and} \quad f(\omega^2) = a\omega^2 + b f ( ω ) = aω + b and f ( ω 2 ) = a ω 2 + b
Since ω 2 + ω + 1 = 0 \omega^2 + \omega + 1 = 0 ω 2 + ω + 1 = 0 (i.e., ω 2 = − ω − 1 \omega^2 = -\omega - 1 ω 2 = − ω − 1 ) and ω 3 = 1 \omega^3 = 1 ω 3 = 1 :
f ( ω ) = ω 4 + 2 ω 3 − ω 2 + 3 = ω + 2 − ( − ω − 1 ) + 3 = ω + 2 + ω + 1 + 3 = 2 ω + 6 f(\omega) = \omega^4 + 2\omega^3 - \omega^2 + 3 = \omega + 2 - (-\omega - 1) + 3 = \omega + 2 + \omega + 1 + 3 = 2\omega + 6 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 f(\omega^2) = \omega^8 + 2\omega^6 - \omega^4 + 3 = \omega^2 + 2 - \omega + 3 = (-\omega - 1) + 2 - \omega + 3 = -2\omega + 4 f ( ω 2 ) = ω 8 + 2 ω 6 − ω 4 + 3 = ω 2 + 2 − ω + 3 = ( − ω − 1 ) + 2 − ω + 3 = − 2 ω + 4 .
From a ω + b = 2 ω + 6 a\omega + b = 2\omega + 6 aω + b = 2 ω + 6 : a = 2$$b = 6 .
Check: a ω 2 + b = 2 ( − ω − 1 ) + 6 = − 2 ω + 4 a\omega^2 + b = 2(-\omega - 1) + 6 = -2\omega + 4 a ω 2 + b = 2 ( − ω − 1 ) + 6 = − 2 ω + 4 . Consistent.
Remainder: 2 x + 6 2x + 6 2 x + 6 .
Worked Example 16: Vieta for cubic equations
If \alpha$$\beta$$\gamma are roots of x 3 − 2 x 2 + 3 x − 4 = 0 x^3 - 2x^2 + 3x - 4 = 0 x 3 − 2 x 2 + 3 x − 4 = 0 Find α 2 + β 2 + γ 2 \alpha^2 + \beta^2 + \gamma^2 α 2 + β 2 + γ 2 .
Solution From Vieta: \alpha + \beta + \gamma = 2$$\alpha\beta + \beta\gamma + \gamma\alpha = 3$$\alpha\beta\gamma = 4 .
( α + β + γ ) 2 = α 2 + β 2 + γ 2 + 2 ( α β + β γ + γ α ) (\alpha + \beta + \gamma)^2 = \alpha^2 + \beta^2 + \gamma^2 + 2(\alpha\beta + \beta\gamma + \gamma\alpha) ( α + β + γ ) 2 = α 2 + β 2 + γ 2 + 2 ( α β + β γ + γ α )
4 = α 2 + β 2 + γ 2 + 6 ⟹ α 2 + β 2 + γ 2 = − 2 4 = \alpha^2 + \beta^2 + \gamma^2 + 6 \implies \alpha^2 + \beta^2 + \gamma^2 = -2 4 = α 2 + β 2 + γ 2 + 6 ⟹ α 2 + β 2 + γ 2 = − 2
Worked Example 17: Binomial coefficient ratio
If ( n 3 ) = 3 ( n − 1 2 ) \binom{n}{3} = 3\binom{n-1}{2} ( 3 n ) = 3 ( 2 n − 1 ) Find n n n .
Solution n ! 3 ! ( n − 3 ) ! = 3 ⋅ ( n − 1 ) ! 2 ! ( n − 3 ) ! \frac{n!}{3!(n-3)!} = 3 \cdot \frac{(n-1)!}{2!(n-3)!} 3 ! ( n − 3 )! n ! = 3 ⋅ 2 ! ( n − 3 )! ( n − 1 )!
n 6 = 3 2 ⟹ n = 9 \frac{n}{6} = \frac{3}{2} \implies n = 9 6 n = 2 3 ⟹ n = 9
DSE Practice 1. When f ( x ) = x 3 + a x 2 + b x + c f(x) = x^3 + ax^2 + bx + c f ( x ) = x 3 + a x 2 + b x + c is divided by ( x − 1 ) (x - 1) ( x − 1 ) The remainder is 4 4 4 . When divided by ( x + 1 ) (x + 1) ( x + 1 ) The remainder is − 2 -2 − 2 . When divided by ( x − 2 ) (x - 2) ( x − 2 ) The remainder is 14 14 14 . Find a a a , b b b And c c c .
Solution f ( 1 ) = 1 + a + b + c = 4 ⟹ a + b + c = 3 (i) f(1) = 1 + a + b + c = 4 \implies a + b + c = 3 \quad \text{(i)} 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(-1) = -1 + a - b + c = -2 \implies a - b + c = -1 \quad \text{(ii)} f ( − 1 ) = − 1 + a − b + c = − 2 ⟹ a − b + c = − 1 (ii)
f ( 2 ) = 8 + 4 a + 2 b + c = 14 ⟹ 4 a + 2 b + c = 6 (iii) f(2) = 8 + 4a + 2b + c = 14 \implies 4a + 2b + c = 6 \quad \text{(iii)} f ( 2 ) = 8 + 4 a + 2 b + c = 14 ⟹ 4 a + 2 b + c = 6 (iii)
(i) - (ii): 2 b = 4 ⟹ b = 2 2b = 4 \implies b = 2 2 b = 4 ⟹ b = 2 .
(iii) - (i): 3 a + b = 3 ⟹ 3 a + 2 = 3 ⟹ a = 1 3 3a + b = 3 \implies 3a + 2 = 3 \implies a = \dfrac{1}{3} 3 a + b = 3 ⟹ 3 a + 2 = 3 ⟹ a = 3 1 .
From (i): 1 3 + 2 + c = 3 ⟹ c = 2 3 \dfrac{1}{3} + 2 + c = 3 \implies c = \dfrac{2}{3} 3 1 + 2 + c = 3 ⟹ c = 3 2 .
DSE Practice 2. Find the coefficient of x 3 x^3 x 3 in the expansion of ( 1 + 2 x − x 2 ) 5 (1 + 2x - x^2)^5 ( 1 + 2 x − x 2 ) 5 .
Solution We need to find all ways to get x 3 x^3 x 3 from expanding ( 1 + 2 x − x 2 ) 5 (1 + 2x - x^2)^5 ( 1 + 2 x − x 2 ) 5 using the multinomial theorem.
The general term from choosing a a a ones, b b b copies of 2 x 2x 2 x And c c c copies of − x 2 -x^2 − x 2 where a + b + c = 5 a + b + c = 5 a + b + c = 5 :
5 ! a ! b ! c ! ⋅ 1 a ⋅ ( 2 x ) b ⋅ ( − x 2 ) c = 5 ! a ! b ! c ! ⋅ 2 b ⋅ ( − 1 ) c ⋅ x b + 2 c \frac{5!}{a!\,b!\,c!} \cdot 1^a \cdot (2x)^b \cdot (-x^2)^c = \frac{5!}{a!\,b!\,c!} \cdot 2^b \cdot (-1)^c \cdot x^{b + 2c} a ! b ! c ! 5 ! ⋅ 1 a ⋅ ( 2 x ) b ⋅ ( − x 2 ) c = a ! b ! c ! 5 ! ⋅ 2 b ⋅ ( − 1 ) c ⋅ x b + 2 c
For x 3 x^3 x 3 : b + 2 c = 3 b + 2c = 3 b + 2 c = 3 with a + b + c = 5 a + b + c = 5 a + b + c = 5 , a , b , c ≥ 0 a, b, c \geq 0 a , b , c ≥ 0 .
Case c = 0 c = 0 c = 0 : b = 3 b = 3 b = 3 , a = 2 a = 2 a = 2 . Coefficient: 120 2 ! ⋅ 3 ! ⋅ 8 = 10 ⋅ 8 = 80 \dfrac{120}{2! \cdot 3!} \cdot 8 = 10 \cdot 8 = 80 2 ! ⋅ 3 ! 120 ⋅ 8 = 10 ⋅ 8 = 80 .
Case c = 1 c = 1 c = 1 : b = 1 b = 1 b = 1 , a = 3 a = 3 a = 3 . Coefficient: 120 3 ! ⋅ 1 ! ⋅ 1 ! ⋅ 2 ⋅ ( − 1 ) = 20 ⋅ ( − 2 ) = − 40 \dfrac{120}{3! \cdot 1! \cdot 1!} \cdot 2 \cdot (-1) = 20 \cdot (-2) = -40 3 ! ⋅ 1 ! ⋅ 1 ! 120 ⋅ 2 ⋅ ( − 1 ) = 20 ⋅ ( − 2 ) = − 40 .
Total coefficient of x 3 x^3 x 3 : 80 + ( − 40 ) = 40 80 + (-40) = 40 80 + ( − 40 ) = 40 .
DSE Practice 3. If ( x + 1 ) (x + 1) ( x + 1 ) and ( x − 2 ) (x - 2) ( x − 2 ) are factors of f ( x ) = 2 x 3 + a x 2 + b x − 6 f(x) = 2x^3 + ax^2 + bx - 6 f ( x ) = 2 x 3 + a x 2 + b x − 6 Find a a a and b b b . Hence find the third factor.
Solution f ( − 1 ) = − 2 + a − b − 6 = 0 ⟹ a − b = 8 (i) f(-1) = -2 + a - b - 6 = 0 \implies a - b = 8 \quad \text{(i)} f ( − 1 ) = − 2 + a − b − 6 = 0 ⟹ a − b = 8 (i)
f ( 2 ) = 16 + 4 a + 2 b − 6 = 0 ⟹ 4 a + 2 b = − 10 ⟹ 2 a + b = − 5 (ii) f(2) = 16 + 4a + 2b - 6 = 0 \implies 4a + 2b = -10 \implies 2a + b = -5 \quad \text{(ii)} f ( 2 ) = 16 + 4 a + 2 b − 6 = 0 ⟹ 4 a + 2 b = − 10 ⟹ 2 a + b = − 5 (ii)
(i) + (ii): 3 a = 3 ⟹ a = 1 3a = 3 \implies a = 1 3 a = 3 ⟹ a = 1 . From (i): b = − 7 b = -7 b = − 7 .
f ( x ) = 2 x 3 + x 2 − 7 x − 6 = ( x + 1 ) ( x − 2 ) ( 2 x + 3 ) f(x) = 2x^3 + x^2 - 7x - 6 = (x + 1)(x - 2)(2x + 3) f ( x ) = 2 x 3 + x 2 − 7 x − 6 = ( x + 1 ) ( x − 2 ) ( 2 x + 3 ) .
Verification: ( x + 1 ) ( x − 2 ) = x 2 − x − 2 (x + 1)(x - 2) = x^2 - x - 2 ( x + 1 ) ( x − 2 ) = x 2 − x − 2 . ( x 2 − x − 2 ) ( 2 x + 3 ) = 2 x 3 + 3 x 2 − 2 x 2 − 3 x − 4 x − 6 = 2 x 3 + x 2 − 7 x − 6 (x^2 - x - 2)(2x + 3) = 2x^3 + 3x^2 - 2x^2 - 3x - 4x - 6 = 2x^3 + x^2 - 7x - 6 ( x 2 − x − 2 ) ( 2 x + 3 ) = 2 x 3 + 3 x 2 − 2 x 2 − 3 x − 4 x − 6 = 2 x 3 + x 2 − 7 x − 6 . Correct.
Third factor: ( 2 x + 3 ) (2x + 3) ( 2 x + 3 ) .
DSE Practice 4. Expand ( 1 + x ) 10 (1 + x)^{10} ( 1 + x ) 10 and use the expansion to find the value of ( 1.01 ) 10 (1.01)^{10} ( 1.01 ) 10 correct to 5 decimal places.
Solution ( 1 + x ) 10 = ∑ k = 0 10 ( 10 k ) x k = 1 + 10 x + 45 x 2 + 120 x 3 + 210 x 4 + 252 x 5 + ⋯ (1 + x)^{10} = \sum_{k=0}^{10} \binom{10}{k} x^k = 1 + 10x + 45x^2 + 120x^3 + 210x^4 + 252x^5 + \cdots ( 1 + x ) 10 = ∑ k = 0 10 ( k 10 ) x k = 1 + 10 x + 45 x 2 + 120 x 3 + 210 x 4 + 252 x 5 + ⋯
Set x = 0.01 x = 0.01 x = 0.01 :
( 1.01 ) 10 ≈ 1 + 10 ( 0.01 ) + 45 ( 0.0001 ) + 120 ( 0.000001 ) + 210 ( 0.00000001 ) (1.01)^{10} \approx 1 + 10(0.01) + 45(0.0001) + 120(0.000001) + 210(0.00000001) ( 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 = 1 + 0.1 + 0.0045 + 0.00012 + 0.0000021 = 1.1046221 = 1 + 0.1 + 0.0045 + 0.00012 + 0.0000021 = 1.1046221
To 5 decimal places: 1.10462 1.10462 1.10462 .
DSE Practice 5. Prove that for positive integers n ≥ 2 n \geq 2 n ≥ 2 , n n > 2 n − 1 ⋅ n ! n^n > 2^{n-1} \cdot n! n n > 2 n − 1 ⋅ n ! .
Solution By the AM-GM inequality applied to the n n n numbers 1 , 2 , 3 , … , n 1, 2, 3, \ldots, n 1 , 2 , 3 , … , n :
1 + 2 + ⋯ + n n ≥ ( 1 ⋅ 2 ⋯ n ) 1 / n \frac{1 + 2 + \cdots + n}{n} \geq (1 \cdot 2 \cdots n)^{1/n} n 1 + 2 + ⋯ + n ≥ ( 1 ⋅ 2 ⋯ n ) 1/ n
n ( n + 1 ) 2 n ≥ ( n ! ) 1 / n \frac{n(n+1)}{2n} \geq (n!)^{1/n} 2 n n ( n + 1 ) ≥ ( n ! ) 1/ n
n + 1 2 ≥ ( n ! ) 1 / n \frac{n+1}{2} \geq (n!)^{1/n} 2 n + 1 ≥ ( n ! ) 1/ n
( n + 1 2 ) n ≥ n ! \left(\frac{n+1}{2}\right)^n \geq n! ( 2 n + 1 ) n ≥ n !
We need to show n n > 2 n − 1 ⋅ n ! n^n > 2^{n-1} \cdot n! n n > 2 n − 1 ⋅ n ! I.e., n n / n ! > 2 n − 1 n^n / n! > 2^{n-1} n n / n ! > 2 n − 1 I.e., n n n ! > 2 n − 1 \dfrac{n^n}{n!} > 2^{n-1} n ! n n > 2 n − 1 .
Note n n n ! = n ⋅ n ⋯ n n ⋅ ( n − 1 ) ⋯ 1 = ∏ k = 1 n − 1 n n − k \dfrac{n^n}{n!} = \dfrac{n \cdot n \cdots n}{n \cdot (n-1) \cdots 1} = \prod_{k=1}^{n-1} \dfrac{n}{n - k} n ! n n = n ⋅ ( n − 1 ) ⋯ 1 n ⋅ n ⋯ n = ∏ k = 1 n − 1 n − k n .
Each factor n n − k ≥ n n − 1 > 1 \dfrac{n}{n - k} \geq \dfrac{n}{n - 1} > 1 n − k n ≥ n − 1 n > 1 for n ≥ 2 n \geq 2 n ≥ 2 and k ≥ 1 k \geq 1 k ≥ 1 .
n n − 1 ⋅ n n − 2 ⋯ n 1 > 2 ⋅ 2 ⋯ 2 = 2 n − 1 \dfrac{n}{n-1} \cdot \dfrac{n}{n-2} \cdots \dfrac{n}{1} > 2 \cdot 2 \cdots 2 = 2^{n-1} n − 1 n ⋅ n − 2 n ⋯ 1 n > 2 ⋅ 2 ⋯ 2 = 2 n − 1 when n ≥ 3 n \geq 3 n ≥ 3 (since n n − k ≥ 2 \dfrac{n}{n-k} \geq 2 n − k n ≥ 2 when n − k ≤ n / 2 n - k \leq n/2 n − k ≤ n /2 ).
For n = 2 n = 2 n = 2 : 4 > 2 ⋅ 2 = 4 4 > 2 \cdot 2 = 4 4 > 2 ⋅ 2 = 4 ? No, 4 = 4 4 = 4 4 = 4 . For n = 3 n = 3 n = 3 : 27 > 4 ⋅ 6 = 24 27 > 4 \cdot 6 = 24 27 > 4 ⋅ 6 = 24 . Yes.
The inequality holds strictly for n ≥ 3 n \geq 3 n ≥ 3 . For n = 2 n = 2 n = 2 Equality holds.
Forgetting the remainder theorem condition. The Remainder Theorem states f ( a ) f(a) f ( a ) is the remainder when dividing by ( x − a ) (x - a) ( x − a ) , but only when the divisor is of the form x − c x - c x − c .
Missing the factor theorem converse. f ( c ) = 0 f(c) = 0 f ( c ) = 0 implies ( x − c ) (x-c) ( x − c ) is a factor, but students sometimes assume ( x + c ) (x+c) ( x + c ) is a factor when f ( − c ) = 0 f(-c) = 0 f ( − c ) = 0 .
Arithmetic errors in polynomial long division. A single sign error propagates through all subsequent steps.
Misreading the question, particularly with ‘hence’ vs ‘hence or otherwise’ — the former requires using previous work.
Remainder Theorem: remainder when f ( x ) f(x) f ( x ) is divided by ( x − a ) (x - a) ( x − a ) equals f ( a ) f(a) f ( a ) .
Factor Theorem: ( x − a ) (x - a) ( x − a ) is a factor of f ( x ) f(x) f ( x ) if and only if f ( a ) = 0 f(a) = 0 f ( a ) = 0 .
For polynomial equations, if one root is known, use polynomial division or synthetic division to reduce the degree.
Vieta’s formulas relate coefficients to sums and products of roots for any degree polynomial.
Problem. Given that ( x − 2 ) (x - 2) ( x − 2 ) is a factor of f ( x ) = x 3 − 3 x 2 + a x + 6 f(x) = x^3 - 3x^2 + ax + 6 f ( x ) = x 3 − 3 x 2 + a x + 6 , find a a a and factorise f ( x ) f(x) f ( x ) completely.
Solution. By the Factor Theorem, f ( 2 ) = 0 f(2) = 0 f ( 2 ) = 0 : 8 − 12 + 2 a + 6 = 0 ⟹ 2 a + 2 = 0 ⟹ a = − 1 8 - 12 + 2a + 6 = 0 \implies 2a + 2 = 0 \implies a = -1 8 − 12 + 2 a + 6 = 0 ⟹ 2 a + 2 = 0 ⟹ a = − 1
So f ( x ) = x 3 − 3 x 2 − x + 6 f(x) = x^3 - 3x^2 - x + 6 f ( x ) = x 3 − 3 x 2 − x + 6 . Dividing by ( x − 2 ) (x - 2) ( x − 2 ) :
x 3 − 3 x 2 − x + 6 = ( x − 2 ) ( x 2 − x − 3 ) x^3 - 3x^2 - x + 6 = (x-2)(x^2 - x - 3) x 3 − 3 x 2 − x + 6 = ( x − 2 ) ( x 2 − x − 3 )
The quadratic x 2 − x − 3 = 0 x^2 - x - 3 = 0 x 2 − x − 3 = 0 has Δ = 1 + 12 = 13 \Delta = 1 + 12 = 13 Δ = 1 + 12 = 13 , so: f ( x ) = ( x − 2 ) ( x − 1 + 13 2 ) ( x − 1 − 13 2 ) f(x) = (x-2)\left(x - \frac{1+\sqrt{13}}{2}\right)\left(x - \frac{1-\sqrt{13}}{2}\right) f ( x ) = ( x − 2 ) ( x − 2 1 + 13 ) ( x − 2 1 − 13 )
■ \blacksquare ■
Problem. When f ( x ) = 2 x 3 + p x 2 − 5 x + 3 f(x) = 2x^3 + px^2 - 5x + 3 f ( x ) = 2 x 3 + p x 2 − 5 x + 3 is divided by ( x − 1 ) (x - 1) ( x − 1 ) the remainder is 4 4 4 . Find p p p .
Solution. By the Remainder Theorem: f ( 1 ) = 4 f(1) = 4 f ( 1 ) = 4 . 2 ( 1 ) 3 + p ( 1 ) 2 − 5 ( 1 ) + 3 = 4 ⟹ 2 + p − 5 + 3 = 4 ⟹ p = 4 2(1)^3 + p(1)^2 - 5(1) + 3 = 4 \implies 2 + p - 5 + 3 = 4 \implies p = 4 2 ( 1 ) 3 + p ( 1 ) 2 − 5 ( 1 ) + 3 = 4 ⟹ 2 + p − 5 + 3 = 4 ⟹ p = 4
Confusing the domain and range of functions, or not considering restrictions (e.g., denominator cannot be zero).
Dropping negative signs during algebraic manipulation. Substitute back to verify your answer.
Stashed changes:docs/docs_dse/Maths/compulsory/polynomials.md
A[4_Polynomials] --> B[Key Concepts]
A --> D[Practical Applications]
B --> E[Fundamental definitions]
D --> G[Real-world usage]
The key principles covered in this topic are linked in the sub-pages above. Focus on understanding the definitions, applying the formulas or frameworks, and evaluating strengths and limitations of each approach.
Mathematics is the study of structure, quantity, and change. Algebra provides symbols for unknown quantities, geometry describes spatial relationships, and calculus captures motion and growth. Together, these branches form a powerful toolkit for solving problems that range from calculating areas to predicting population dynamics. Mathematical literacy is essential for science, technology, and informed citizenship.