Real Polynomials
Definition: Real Polynomial
A real polynomial is a polynomial over the field of the real numbers.
<<<<<<< HEAD
=======
content [!THEOREM]- The Binomial Theorem
The expansion of the expression
where is given by the real polynomials
TIP
The expansion has terms. The -th term () is .
PROOF
TODO
Polynomial Division
Theorem: Polynomial Division
Let and be two Real Polynomials such that the degree of is greater than or equal to the degree of .
If is nonzero, then there exist unique polynomials and such that
where
- or is the zero polynomial.
We call the dividend, the divisor, the quotient and the remainder.
PROOF
TODO
Definition: Divisibility
If , then we say that is divisible by .
Theorem: Factorization Theorem
Every real polynomial can be factorized into a product of real polynomials of degree . More specifically,
where:
are the distinct real roots of ;
is the multiplicity of ;
;
.
PROOF
TODO
Polynomial Remainder Theorem (Little Bézout's Theorem)
The remainder upon the division of a real polynomial with a real polynomial is the value of at .
PROOF
Algorithm: Horner's Method
Horner’s method is a way to easily divide a polynomial by a polynomial of degree one.
- Write as . Since , the remainder is just a real number because . This means that we have
- To determine and , construct the following table:
We calculate the table from left to right.
The first coefficient of is equal to the first coefficient of , i.e. .
For all other coefficients of we have .
At the end of the calculation, the right-most cell will contain .
EXAMPLE
Let and . Create the table.
Perform the algorithm step by step.
2
2 6
Algorithm: Change of Variables
We are given a real polynomial and want to transform it into another real polynomial where for some .
- Divide by .
- Divide by .
- Repeat step 2, dividing by in order to obtain and until is just a number.
- Finally,
TIP
You can use Horner’s method to speed up the process.
EXAMPLE