# Nakafa Learning Content

> For AI agents: use [llms.txt](https://nakafa.com/llms.txt) for the site index. Markdown versions are available by appending `.md` to content URLs or sending `Accept: text/markdown`.

URL: https://nakafa.com/en/subjects/mathematics/polynomial/multiplication-polynomial
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/material/lesson/mathematics/polynomial/multiplication-polynomial/en.mdx

Learn polynomial multiplication with the distributive property, table methods, worked examples, and practice.

---

## Basic Principle of Polynomial Multiplication

Similar to the [operations of addition and subtraction of polynomials](/en/subjects/mathematics/polynomial/addition-subtraction-polynomial), the operation of multiplication on polynomials can also be understood through the basic concepts of number multiplication and the distributive property.

The main principle in multiplying two polynomials is: **multiply each term in the first polynomial by each term in the second polynomial.**

After performing all the multiplications between terms, the next step is to **combine (add or subtract) like terms** to simplify the result.

## Multiplication Methods

There are several ways to perform polynomial multiplication, but all are based on the distributive property.

### Horizontal Distribution Method

This method involves distributing each term of the first polynomial to all terms of the second polynomial.

**Example** $$1$$:

Visible text: **Example** :

Find the product of $$(x - 5)(x^2 + 3x - 1)$$.

Visible text: Find the product of .

Component: MathContainer
Children:

```math
(x - 5)(x^2 + 3x - 1)
```

```math
= x(x^2 + 3x - 1) - 5(x^2 + 3x - 1) \quad \text{(Distribute } (x-5))
```

```math
= (x \cdot x^2 + x \cdot 3x + x \cdot (-1)) + (-5 \cdot x^2 - 5 \cdot 3x - 5 \cdot (-1)) \quad \text{(Distribute } x \text{ and} -5)
```

```math
= (x^3 + 3x^2 - x) + (-5x^2 - 15x + 5) \quad \text{(Result of term multiplication)}
```

```math
= x^3 + 3x^2 - x - 5x^2 - 15x + 5 \quad \text{(Remove parentheses)}
```

```math
= x^3 + (3x^2 - 5x^2) + (-x - 15x) + 5 \quad \text{(Group like terms)}
```

```math
= x^3 - 2x^2 - 16x + 5 \quad \text{(Final result)}
```

**Example** $$2$$:

Visible text: **Example** :

Find the product of $$(x^2 - 2x + 7)(2x - 5)$$.

Visible text: Find the product of .

Component: MathContainer
Children:

```math
(x^2 - 2x + 7)(2x - 5)
```

```math
= x^2(2x - 5) - 2x(2x - 5) + 7(2x - 5) \quad \text{(Distribute } (x^2-2x+7))
```

```math
= (x^2 \cdot 2x + x^2 \cdot (-5)) + (-2x \cdot 2x - 2x \cdot (-5)) + (7 \cdot 2x + 7 \cdot (-5)) \quad \text{(Distribute } x^2, -2x, \text{ and} 7)
```

```math
= (2x^3 - 5x^2) + (-4x^2 + 10x) + (14x - 35) \quad \text{(Result of term multiplication)}
```

```math
= 2x^3 - 5x^2 - 4x^2 + 10x + 14x - 35 \quad \text{(Remove parentheses)}
```

```math
= 2x^3 + (-5x^2 - 4x^2) + (10x + 14x) - 35 \quad \text{(Group like terms)}
```

```math
= 2x^3 - 9x^2 + 24x - 35 \quad \text{(Final result)}
```

### Table Method (Area Model)

This method organizes the multiplication of each term using a table, similar to finding the area when multiplying two numbers.

For example, the multiplication $$16 \times 12$$ can be seen as the area of a rectangle with sides $$10+6$$ and $$10+2$$.

Visible text: For example, the multiplication can be seen as the area of a rectangle with sides and .

|        | $$10$$ | $$6$$ |
| :----- | :-- | :-- |
| $$10$$ | $$100$$ | $$60$$ |
| $$2$$ | $$20$$ | $$12$$ |

Visible text: | | | |
| :----- | :-- | :-- |
| | | |
| | | |

Total area is $$100 + 60 + 20 + 12 = 192$$.

Visible text: Total area is .

The same approach can be applied to polynomials.

**Example** $$3$$:

Visible text: **Example** :

Find the product of $$(x + 6)(x + 2)$$ using the table method.

Visible text: Find the product of using the table method.

|                             |  $$x$$  | $$+6$$ |
| :-------------------------- | :-----------------------: | :------------------------ |
| **$$x$$** | $$x^2$$ | $$+6x$$ |
| $$+2$$ | $$+2x$$ | $$+12$$ |

Visible text: | | | |
| :-------------------------- | :-----------------------: | :------------------------ |
| **** | | |
| | | |

Now, sum all the results inside the table cells:

```math
x^2 + 6x + 2x + 12
```

Combine like terms:

Component: MathContainer
Children:

```math
= x^2 + (6x + 2x) + 12
```

```math
= x^2 + 8x + 12
```

**Example** $$4$$:

Visible text: **Example** :

Find the product of $$(x - 5)(x^2 + 3x - 1)$$ using the table method.

Visible text: Find the product of using the table method.

|                             |  $$x^2$$  |  $$+3x$$  | $$-1$$ |
| :-------------------------- | :-------------------------: | :-------------------------: | :----------------------: |
| **$$x$$** |  $$x^3$$  | $$+3x^2$$ | $$-x$$ |
| $$-5$$ | $$-5x^2$$ | $$-15x$$  | $$+5$$ |

Visible text: | | | | |
| :-------------------------- | :-------------------------: | :-------------------------: | :----------------------: |
| **** | | | |
| | | | |

Sum all the results inside the table cells:

```math
x^3 + 3x^2 - x - 5x^2 - 15x + 5
```

Combine like terms:

Component: MathContainer
Children:

```math
= x^3 + (3x^2 - 5x^2) + (-x - 15x) + 5
```

```math
= x^3 - 2x^2 - 16x + 5
```

Notice that the result from the table method is the same as the result from the horizontal distribution method. The table method is just another way to organize the multiplication of each term.