Home

Contents

Math

Algebra

 

Polynomial Functions

 

In case you've forgotten, basic algebra is a game of numbers played according to strict rules.

---------------------------------------------------------------------------------------

Index of Page Topics

General Polynomial in One Variable

Polynomials

Exponents of Polynomials

Practical Algebra

Adding and Subtracting Polynomials

Practical Math

Multiplying and Dividing Polynomials

References

 

------------------------------------------------

General Polynomial in One Variable

The general polynomial can be a function of several variables in any degree. The polynomial in one variable, in its normal form, is written as:

f(x) = anxn + an-1xn-1 + a n-2xn-2 + ... + a2x2 + a1x + a0

where an is a complex number, x ranges over the set of complex numbers, and n is any positive integer.

The general polynomial of degree n in x is said to be an nth degree polynomial in the variable x. In general, n is a positive integer and there are n+1 constants in the normal form.

Classes of polynomial functions in one variable include the linear and quadratic functions, of degree one and two, respectively. A function is linear if the coefficient, a1, is non-zero and the coefficients a2 through an are zero. A function is quadratic if a2 is non-zero and coefficients a3 through an are zero. Similar statements apply to higher degree polynomials of.

Back to Index

 

---------------------------------------------

Exponents of Polynomials

When working with polynomial functions, you need to understand what exponents stand for and how they are to be treated. Say, for example, you have the 4th degree function:

f(x) = 4x4 - 3x..

This function has two exponents, 4 and 1, even though the latter isn't written out. Exponents generally show how many times the base of the exponent -- in this case x -- appears as a factor. In the expression, xn, n is the power of x. In x3, for instance, 3 is the power of x and says that x is a factor three times. So x3 is the same as x times x times x, or xxx.

 

Multiplication

If you multiply x3 by x3, you get the factor, x, six times, or:

x times x times x times x times x times x,

which is:

xxxxxx.

But this is the same as x6. And so you have the result:

(x3)( x3) = x6.

You get similar results using any number of such factors, so you can avoid repeating the factors and simply write the general rule as:

(xa)( xb) = xa+b.

In other words, when you multiply similar factors having exponents, you add the exponents. This is shorthand. If the factor base is different in each factor, you cannot and must not add their exponents. For instance, from

(xa)( yb)

you mustn't try to get

(xy)a+b.

This works only if x equals y.

 

Division

The same ideas apply if you divide, except that now you add a negative number in the exponent, which is just subtracting the positive number. For example, let's divide x3 by x2. This quotient is:

x3/x2 = (xxx/xx)

In division you can cancel like factors.  So you end up with:

x,

or:

x3-2 = x1 = x.

Since x-1 stands for x, you can also write:

x3+(-2) = x3-2 = x1 = x.

And the general rule for division becomes:

xa/xb = xa-b

Back to Index

 

--------------------------------------------

Adding and Subtracting Polynomials

A polynomial is really a string of simpler terms added together, where the terms of the addition are called monomials -- the 'mono' prefix meaning 'one.'  Referring to the general polynomial, here, you can see that the various terms -- the monomials -- have one of the forms:

a, or anxn.

 

For example, you could have the constant:

7 + 3i

where i is the imaginary part of complex numbers. Or you could have the monomial of power 9 in x:

5x9.

Note that 5x9 is the sum of five of the x9s:

5x9 = + x9 + x9 + x9 + x9 + x9.

When you add monomials, you can be dealing with variables of different degree. So you must be sure to merge only monomials of the same degree. For instance, 3x5 + x2 isn't equal to 4x7. They can't be simplified to one term.

 

Adding polynomials

So now let's add two polynomials. For instance, let's add

(5x4 + 3x2 + 2x)

and

(3x5 - 7x4 + x2).

Rearranging and combining the appropriate monomials in the polynomials, we get:

3x5 + 5x4 - 7x4 + 3x2 + x2 + 2x = 3x5 -2x4 + 4x2 + 2x.

 

Subtracting

Subtracting a polynomial is the same as adding the negatives of the polynomial. So let's subtract

(4x4 - 3x2 + 2x)

from

(5x4- 3x3 + x2 +3)

First line up vertically the monomials to be merged. In other words, arrange the terms in descending order, just as in arithmetic, one polynomial below the other, and subtract only corresponding terms.

5x4- 3x3 + x2 + 0x + 3

4x4 - 3x3 - 0x2 + 2x + 0

------------------------

x4- 0x3 + x2 - 2x + 3

Notice that I created a direct match between the polynomials by bringing out the three missing terms -- using zeros. So:

(5x4- 3x3 + x2 + 0x + 3) - (4x4 - 3x3 - 0x2 + 2x + 0) = x4 + x2 - 2x + 3

Back to Index

 

---------------------------------------------

Multiplying and Dividing Polynomials

Multiplication and division of polynomials follow similar practices of multiplication and division of numbers, which is what you'd expect, inasmuch as we're dealing with numbers.

 

Multiplying

Let's multiply (5x4- 3x3 + x2 + 1) by (x + 2). Playing by the algebraic rules of multiplication, the product of the two polynomials is the sum of the products of the monomials. This is the distributive rule:

a(b + c) = ab + bc.

So we get, respectively, for x and 2:

5xx4- 3xx3 + xx2 + 1

or

5x5- 3x4 + x3 + x

and

10x4 - 6x3 + 2x2 + 2

Bracketing the terms with common exponents we can write:

5x5 + (10x4 - 3x4) + (x3 - 6x3) + 2x2 + x + 2,

or

5x5 + 7x4 - 5x3 + 2x2 + x + 2.

 

Dividing

As an example, let's divide (5x3 - 6x2) by x2. That is, we wish to find the quotient:

5x3 - 6x2

---------------

x2

 

One approach is to rewrite the denominator as x--2 and multiply, using the distributive rule of multiplication over the numerator, as follows:

x-2(5x3 - 6x2) = x--25x3 - x--26x2

Adding exponents in the two terms we have the quotient in the form:

5x1 - 6x0 = 5x - 6

since

x0 = 1.

Any quantity raised to the zero power is 1.

Back to Index

-------------------------------------

Top of Page