Last modified on November 29th, 2024

chapter outline

 

Polynomial Expansion

Polynomial expansion refers to expressing a polynomial in the expanded form by multiplying its factors. It is commonly used in algebra to simplify algebraic expressions and also in the context of the Binomial Theorem.

For example, multiplying the polynomials (x + 2) and (x + 3), we get

(x + 2) and (x + 3) = x2 + 5x + 6, which is in the expanded form

Thus, for expanding, we multiply its factors and combine the like terms, resulting in a new polynomial with more terms.

The process often involves using the distributive property of multiplication over addition, combining like terms, or applying algebraic identities.

The general expanded form of a polynomial is:

P(x) = anxn + an – 1xn – 1 + … + a1x + a0 

Here

  • p(x) is the polynomial
  • an, an-1, …, a1 are coefficients of xn, xn-1, …, x 
  • an (≠ 0) is the leading coefficient
  • a0 is constant and ∀ an ∈ ℝ

Polynomials can be expanded in the following ways:

Using Distributive Property

As we know, we multiply two or more factors for expanding the polynomials. When multiplying a polynomial by a monomial or another polynomial, we use the distributive property of multiplication over addition.

According to the distributive property: A(B + C) = AB + AC

For Monomials Multiplied by Polynomials

Let us expand 2xy(x5 + 4x) 

On multiplying the monomial with each term of the binomial using the distributive property, we get

= (2xy)(x5) + (2xy)(4x)

= 2x6y + 8x2y

For Polynomials Multiplied by Polynomials

Let us expand (x – 3)(x2 – 2x + 1)

On multiplying each term of the first polynomial by the second polynomial, we get

= x(x2 – 2x + 1) – 3(x2 – 2x + 1)

Now, on multiplying the monomial with each term of the trinomial, we get

= (x)(x2) + (x)(-2x) + (x)(1) + (-3)(x2) + (-3)(-2x) + (-3)(1)

= x3 – 2x2 + x – 3x2 + 6x – 3

Combining the like terms,

= x3 + (-2x2 – 3x2) + (x + 6x) – 3

= x3 – 5x2 + 7x – 3

For Binomials Multiplied by Binomials (By the FOIL Method)

When expanding two binomials, we use a special form of the distributive property, commonly referred to as the FOIL method. This method helps remember the multiplication process easily.

The FOIL method stands for:

F ⇒ Firsts

O ⇒ Outers

I ⇒ Inners

L ⇒ Lasts

Let us expand the polynomials (2x + 5)(x – 1)

Using the FOIL method,

F ⇒ (2x)(x) = 2x2 

O ⇒ (2x)(-1) = -2x 

I ⇒ (5)(x) = 5x

L ⇒ (5)(-1) = -5

Thus, (2x + 5)(x – 1) = 2x2 – 2x + 5x – 5

Now, combining like terms,

(2x + 5)(x – 1) = 2x2 + (-2x + 5x) – 5 = 2x2 + 3x – 5

Using the Binomial Theorem

For higher power of binomials, we use the Binomial Theorem to expand the expression.

For a binomial raised to a power n, the binomial theorem is mathematically written as: 

${\left( x+y\right) ^{n}=\sum ^{n}_{k=0}\begin{pmatrix} n \\ k \end{pmatrix}x^{n-k}y^{k}}$

Here,

  • x and y are the terms in the binomial
  • n is the exponent
  • ${\begin{pmatrix} n \\ k \end{pmatrix}}$ is the binomial coefficient, representing the number of ways to choose k terms from n 

Let us expand (x + 2)3 using the binomial theorem.

(x + 2)3 = ${\begin{pmatrix} 3 \\ 0 \end{pmatrix}x^{3}2^{0}+\begin{pmatrix} 3 \\ 1 \end{pmatrix}x^{3}2^{1}+\begin{pmatrix} 3 \\ 2 \end{pmatrix}x^{1}2^{2}+\begin{pmatrix} 3 \\ 1 \end{pmatrix}x^{2}2^{3}}$

⇒ (x + 2)3 = 1 ⋅ x3 + 3 ⋅ x2 ⋅ 2 + 3 ⋅ x ⋅ 4 + 1 ⋅ 8

⇒ (x + 2)3 = x3 + 6x2 + 12x + 8

Thus, (x + 2)3 = x3 + 6x2 + 12x + 8

Using the Pascal’s Triangle

We can also use Pascal’s triangle to expand expressions of the form (x + y)n, where each row of the triangle corresponds to the coefficients required for the expansion. 

Let us expand (x + 2)3.

First, we find the coefficients of the expansion using Pascal’s triangle.

For n = 3, the 3rd-row coefficients of the triangle are 1, 3, 3, 1

Now, combining the coefficients with powers of x and 2, we get

(x + 2)3 = 1 ⋅ (x)3 + 3 ⋅ (x)2 ⋅ (2) + 3 ⋅ (x) ⋅ (2)2 + 1 ⋅ (2)3 

⇒ (x + 2)3 = x3 + 6x2 + 12x + 8

Thus, (x + 2)3 = x3 + 6x2 + 12x + 8

Solved Examples

Expand the following polynomials: 
a) 2x2 – (x + 1)(x – 4)
b) (x + 1)(x2 – 2x + 5)
c) (x + 2)(x – 3)(x – 5)

Solution:

a) Given, 2x2 – (x + 1)(x – 4)
= 2x2 – (x2 + x – 4x – 4)
= 2x2 – x2 – 3x – 4
= (2x2 – x2) – 3x – 4
= x2 – 3x – 4
b) Given, (x + 1)(x2 – 2x + 5)
= x(x2 – 2x + 5) + 1(x2 – 2x + 5)
= (x)(x2) + (x)(-2x) + (x)(5) + (1)(x2) + (1)(-2x) + (1)(5)
= x3 – 2x2 + 5x + x2 – 2x + 5
= x3 + (-2x2 + x2) + (5x – 2x) + 5
= x3 – x2 + 3x + 5
c) Given, (x + 2)(x – 3)(x – 5)
= [(x + 2)(x – 3)] (x – 5)
= [x(x – 3) + 2(x – 3)] (x – 5)
= [(x)(x) + (x)(-3) + (2)(x) + (2)(-3)] (x – 5)
= [x2 – 3x + 2x – 6](x – 5)
= [x2 + (-3x + 2x) – 6](x – 5)
= (x2 – x – 6)(x – 5)
= x(x2 – x – 6) – 5(x2 – x – 6)
= (x)(x2) + (x)(-x) + (x)(-6) + (-5)(x2) + (-5)(-x) + (-5)(-6)
= x3 – x2 – 6x – 5x2 + 5x + 30
= x3 + (-x2 – 5x2) + (-6x + 5x) + 30
= x3 – 6x2 – x + 30

Problem: Expanding POLYNOMIALS using ALGEBRAIC IDENTITIES

Expand the following: 
a) (x + 2)(x + 1)2
b) (x – 1)3(x + 2)
c) (x + 2)(x – 2)2

Solution:

a) As we know, (a + b)2 = a2 + 2ab + b2 
Here, (x + 1)2 = x2 + 2x + 1
Now, (x + 2)(x + 1)2 
= (x + 2)(x2 + 2x + 1)
= x(x2 + 2x + 1) + 2(x2 + 2x + 1)
= (x)(x2) + (x)(2x) + (x)(1) + (2)(x2) + (2)(2x) + (2)(1)
= x3 + 2x2 + x + 2x2 + 4x + 2
= x3 + (2x2 + 2x2) + (4x + x) + 2
= x3 + 4x2 + 5x + 2
b) As we know, (a – b)3 = a3 – 3a2b + 3ab2 – b3 
Here, (x – 1)3 = x3 – 3x2 + 3x – 1
Now, (x – 1)3(x + 2)
= (x3 – 3x2 + 3x – 1)(x + 2)
= x(x3 – 3x2 + 3x – 1) + 2(x3 – 3x2 + 3x – 1)
= (x)(x3) + (x)(-3x2) + (x)(3x) + (x)(-1) + (2)(x3) + (2)(-3x2) + (2)(3x) + (2)(-1)
= x4 – 3x3 + 3x2 – x + 2x3 – 6x2 + 6x – 2
= x4 + (-3x3 + 2x3) + (3x2 – 6x2) + (-x + 6x) – 2
= x4 – x3 – 3x2 + 5x – 2
c) As we know, (a + b)(a – b) = a2 – b2 
Here, (x + 2)(x – 2)2 
= (x + 2)(x – 2)(x – 2)
= [(x + 2)(x – 2)] (x – 2)
= [(x)2 – (2)2] (x – 2)
= (x2 – 4)(x – 2)
= x2(x – 2) – 4(x – 2)
= (x2)(x) + (x2)(-2) + (-4)(x) + (-4)(-2)
= x3 – 2x2 – 4x + 8

Problem: Finding DEGREE and COEFFICIENTS by expansion

Expand the following expression and identify the degree and the coefficients of the terms: (2x3 – 5x2 + 3x – 4)(x2 – x + 1)

Solution:

Given, (2x3 – 5x2 + 3x – 4)(x2 – x + 1)
= x2(2x3 – 5x2 + 3x – 4) – x(2x3 – 5x2 + 3x – 4) + 1(2x3 – 5x2 + 3x – 4)
= (x2)(2x3) + (x2)(-5x2) + (x2)(3x) + (x2)(-4) + (-x)(2x3) + (-x)(-5x2) + (-x)(3x) + (-x)(-4) + (1)(2x3) + (1)(-5x2) + (1)(3x) + (1)(-4)
= 2x5 – 5x4 + 3x3 – 4x2 – 2x4 + 5x3 – 3x2 + 4x + 2x3 – 5x2 + 3x – 4
= 2x5 + (-5x4 – 2x4) + (3x3 + 5x3 + 2x3) + (-4x2 – 3x2 – 5x2) + (4x + 3x) – 4
= 2x5 – 7x4 + 10x3 – 12x2 + 7x – 4
Here, the terms are:
2x5 has an exponent of 5 and a coefficient of 2
-7x4 has an exponent of 4 and a coefficient of -7
10x3 has an exponent of 3 and a coefficient of 10
-12x2 has an exponent of 2 and a coefficient of -12
7x has an exponent of 1 and a coefficient of 7
4 is a constant term with an exponent of 0 
Thus, the degree of the expression is 5 (as the highest exponent is 5)

Last modified on November 29th, 2024