Loading [MathJax]/jax/output/CommonHTML/jax.js

Polynomials


Definition of a polynomial

A polynomial is an expression made up of the sum of a finite number of powers in one or more variables multiplied by coefficients. This is a general polynomial in one variable:

anxn+bn1xn1++a2x2+a1x+a0

Each coefficient (ak) would have a numerical value. The powers could start with any value of n, and don’t need to include every power between n and 1. Here’s an example:

2x4x2+5x9

Polynomials can have multiple variables, and get a little more complicated. Here is an example of a polynomial with two variables:

3x2y2+x2y2xy2+4xy+x2y+3

This lesson will focus on polynomials with only one variable raised to powers of two or less, these polynomials have the form:

a2x2+a1x+a0

The coefficients (a2,a1,a0) can be positive, negative, or zero. If you know the coefficients of a polynomial you can fully construct it, because the x terms stay the same. For example say:

a2=3,a1=0,anda0=1

Can you write the polynomial associated with these coefficients? It would be:

(3)x2+(0)x+(1)=3x21

This lesson will focus on adding, subtracting, multiplying, and factoring polynomials.

Adding and subtraction polynomials

To add or subtract two polynomials you simply ‘combine like terms.’ This means that you add/subtract the coefficients of variables with the same power to get the new coefficients for those variables. For example, to add the polynomials 3x2+6x2 and x24x+1 we would have:

(3+1)x2+(64)x+(2+1)=4x2+2x1

Subtraction works in the same way. Subtracting 2x2+x3 from x24x+5 gives:

(12)x2+(41)x+(5(3))=3x25x+8

Take the same approach to add or subtract polynomials with two variables or more variables; however, you will have more terms to keep track of.

Adding x2y2x2y3xy2+2xy to 5x2y2+x2y2xy26xy yields:

(5+1)x2y2+(11)x2y+(2+3)xy2+(6+2)xy=6x2y25xy24xy

Multiplying polynomials

We are only going to focus on multiplying simple polynomials of the form a1x+10. To multiply two polynomials you must multiply each term in the first polynomial by each term in the second polynomial and vice versa. The lines in the following picture connect terms that we must multiply together.

The below example illustrates this multiplicative distribution. After the multiplication, we combine like terms to reach a simplified solution.

(x+1)(2x3)=x(2x)+x(3)+1(2x)+1(3)=2x23x+2x3=2x2x3

It is important to remember to multiply the x terms as well as the numbers. Below we show the solution to the general multiplication problem; you can think of it as a template into which real numbers can be substituted for the a, b, c, and d terms.

(ax+b)(cx+d)=(ac)x2+(ad+bc)x+(bd)

The key to multiplying polynomials is to make sure each term meets every other term once. Here is another example worth noting:

(x+3)(x3)=x(x)+x(3)+3(x)+3(3)=x23x+3x9=x29

Factoring polynomials

Factoring a polynomial means decomposing it into the product of two smaller polynomials. For example:

x2x12=(x4)(x+3)

Essentially we are working in the opposite direction as we were above when we multiplied small polynomials. The small polynomials x4 and x+3 are said to be factors of the larger polynomial x2x12.

Finding the factors of a polynomial requires a bit of guesswork and a familiarity with the process of polynomial multiplication that we discussed in the last section. I’ll refer to the general equation below while describing the process of factoring polynomials:

ax2+bx+c=(Ax+B)(Cx+D)

When given an equation ax2+bx+c and asked to factor it, you first need to choose A and C so that AC=a. Then you need to choose B and D such that BD=c and (AD+BC)=b.

As an example, say we want to factor the polynomial 2x2+7x+3. We start by letting A=2 and C=1, since 2x1x=2x2. Now we must find B and D such that BD=3 and (2D+B)=7. This step usually involves some ‘guessing and checking.’ You should end up with B=1 and D=3. We now have all the pieces to factor our polynomial:

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

You can check this factorization by multiplying the two factors; you should get the original polynomial as the answer. Factoring polynomials requires good intuition. It can get especially tricky when you have multiple possibilities for A and C, like when factoring 4x29x+2. In this case we could have either A=4, C=1 or A=2, C=2. What you need to do is just pick one of the two options and then try to find B and D. If you’re unable to find a B and D that work you need to switch to the other combination of A and C. In this case the correct factorization is:

4x29x+2=(4x1)(x2)

Practice questions

    Combine like terms

  1. 2x23x4+3x2+4x1
  2. 10a6b(2ab)
  3. x2y2+4x2y4xy2+xy+2x2y2x2y2xy
  4. x2x14(x22x+1)
  5. Multiply and combine like terms

  6. (x+1)(x1)
  7. (3x1)(2x+3)
  8. (2x1)(1x)
  9. (x+12)(x+2)
  10. (2x3)(2x+3)
  11. (x4)2
  12. Factor

  13. x2+4x+3
  14. x22x8
  15. x2+12x+32
  16. 2x2+9x5
  17. 4x2+20x+25
  18. x29
  19. x2+3x
  20. 2x2+6x+4

Solutions


  1. Solution: 2x23x4+3x2+4x1=(2+3)x2+(3+4)x+(41)=5x2+x5
  2. Solution: 10a6b(2ab)=(102)a+(6+1)b=8a5b
  3. Solution: x2y2+4x2y4xy2+xy+2x2y2x2y2xy=(1+2)x2y2+(41)x2y4xy2+(12)xy=3x2y2+3x2y4xy2xy
  4. Solution: x2x14(x22x+1)=x2x1(4x28x+4)=(14)x2+(1+8)x+(14)=3x2+7x5
  5. Solution: (x+1)(x1)=x2x+x1=x21
  6. Solution: (3x1)(2x+3)=6x2+9x2x3=6x2+7x3
  7. Solution: (2x1)(1x)=2x2x21+x=2x2+3x1
  8. Solution: (x+12)(x+2)=x2+2x+12x+1=x2+52x+1
  9. Solution: (2x3)(2x+3)=4x2+6x6x9=4x29
  10. Solution: (x4)2=(x4)(x4)=x24x4x+16=x28x+16
  11. Solution: x2+4x+3=(x+1)(x+3)
  12. Solution: x22x8=(x+2)(x4)
  13. Solution: x2+12x+32=(x+8)(x+4)
  14. Solution: 2x2+9x5=(2x1)(x+5)
  15. Solution: 4x2+20x+25=(2x+5)(2x+5)=(2x+5)2
  16. Solution: x29=(x+3)(x3)
  17. Solution: x2+3x=x(x+3)
  18. Solution: 2x2+6x+4=2(x2+3x+2)=2(x+2)(x+1)