-->

Minggu, 26 November 2017

In algebra, polynomial long division is an algorithm for dividing a polynomial by another polynomial of the same or lower degree, a generalised version of the familiar arithmetic technique called long division. It can be done easily by hand, because it separates an otherwise complex division problem into smaller ones. Sometimes using a shorthand version called synthetic division is faster, with less writing and fewer calculations.

Polynomial long division is an algorithm that implements the Euclidean division of polynomials, which starting from two polynomials A (the dividend) and B (the divisor) produces, if B is not zero, a quotient Q and a remainder R such that

A = BQ + R,

and either R = 0 or the degree of R is lower than the degree of B. These conditions uniquely define Q and R, which means that Q and R do not depend on the method used to compute them.

The result R=0 occurs if and only if the polynomial A has B as a factor. Thus long division is a means for testing whether one polynomial has another as a factor, and, if it does, for factoring it out. For example, if a root r of A is known, it can be factored out by dividing A by (xâ€"r).

Example



Find the quotient and the remainder of the division of x 3 âˆ' 2 x 2 âˆ' 4 , {\displaystyle x^{3}-2x^{2}-4,} the dividend, by x âˆ' 3 , {\displaystyle x-3,} the divisor.

The dividend is first rewritten like this:

x 3 âˆ' 2 x 2 + 0 x âˆ' 4. {\displaystyle x^{3}-2x^{2}+0x-4.}

The quotient and remainder can then be determined as follows:

The polynomial above the bar is the quotient q(x), and the number left over ( 5) is the remainder r(x).

x 3 âˆ' 2 x 2 âˆ' 4 = ( x âˆ' 3 ) ( x 2 + x + 3 ) ⏟ q ( x ) + 5 ⏟ r ( x ) {\displaystyle {x^{3}-2x^{2}-4}=(x-3)\,\underbrace {(x^{2}+x+3)} _{q(x)}+\underbrace {5} _{r(x)}}

The long division algorithm for arithmetic is very similar to the above algorithm, in which the variable x is replaced by the specific number 10.

Pseudo-code



source : courses.lumenlearning.com

The algorithm can be represented in pseudo-code as follows, where +, âˆ', and × represent polynomial arithmetic, and / represents simple division of two terms:

  function n / d:    require d ≠ 0    q ← 0    r ← n       # At each step n = d × q + r    while r ≠ 0 AND degree(r) ≥ degree(d):       t ← lead(r)/lead(d)     # Divide the leading terms       q ← q + t       r ← r âˆ' t * d    return (q, r)  

Note that this works equally well when degree(n) < degree(d); in that case the result is just the trivial (0, n).

This algorithm describes exactly the above paper and pencil method: d is written on the left of the ")"; q is written, term after term, above the horizontal line, the last term being the value of t; the region under the horizontal line is used to compute and write down the successive values of r.

Euclidean division



source : study.com

For every pair of polynomials (A, B) such that B ≠ 0, polynomial division provides a quotient Q and a remainder R such that

A = B Q + R , {\displaystyle A=BQ+R,}

and either R=0 or degree(R) < degree(B). Moreover (Q, R) is the unique pair of polynomials having this property.

The process of getting the uniquely defined polynomials Q and R from A and B is called Euclidean division (sometimes division transformation). Polynomial long division is thus an algorithm for Euclidean division.

Applications



source : www.showme.com

Factoring polynomials

Sometimes one or more roots of a polynomial are known, perhaps having been found using the rational root theorem. If one root r of a polynomial P(x) of degree n is known then polynomial long division can be used to factor P(x) into the form (x âˆ' r)(Q(x)) where Q(x) is a polynomial of degree n âˆ' 1. Q(x) is simply the quotient obtained from the division process; since r is known to be a root of P(x), it is known that the remainder must be zero.

Likewise, if more than one root is known, a linear factor (x âˆ' r) in one of them (r) can be divided out to obtain Q(x), and then a linear term in another root, s, can be divided out of Q(x), etc. Alternatively, they can all be divided out at once: for example the linear factors x âˆ' r and x âˆ' s can be multiplied together to obtain the quadratic factor x2 âˆ' (r + s)x + rs, which can then be divided into the original polynomial P(x) to obtain a quotient of degree n âˆ' 2.

In this way, sometimes all the roots of a polynomial of degree greater than four can be obtained, even though that is not always possible. For example, if the rational root theorem can be used to obtain a single (rational) root of a quintic polynomial, it can be factored out to obtain a quartic (fourth degree) quotient; the explicit formula for the roots of a quartic polynomial can then be used to find the other four roots of the quintic.

Finding tangents to polynomial functions

Polynomial long division can be used to find the equation of the line that is tangent to the graph of the function defined by the polynomial P(x) at a particular point x = r. If R(x) is the remainder of the division of P(x) by (x â€" r)2, then the equation of the tangent line at x = r to the graph of the function y = P(x) is y = R(x), regardless of whether or not r is a root of the polynomial.

Example

Find the equation of the line that is tangent to the following curve at x = 1 {\displaystyle x=1} :
y = x 3 âˆ' 12 x 2 âˆ' 42. {\displaystyle y=x^{3}-12x^{2}-42.}
Begin by dividing the polynomial by ( x âˆ' 1 ) 2 = x 2 âˆ' 2 x + 1 {\displaystyle (x-1)^{2}=x^{2}-2x+1} :
x âˆ' 10 x 2 âˆ' 2 x + 1 ) x 3 âˆ' 12 x 2 + 0 x âˆ' 42 ¯ x 3 âˆ' 0 2 x 2 + 1 x _ âˆ' 42 âˆ' 10 x 2 âˆ' 01 x âˆ' 42 âˆ' 10 x 2 + 20 x âˆ' 10 _ âˆ' 21 x âˆ' 32 {\displaystyle {\begin{array}{r}x-10\\x^{2}-2x+1{\overline {)x^{3}-12x^{2}+0x-42}}\\{\underline {x^{3}-{\color {White}0}2x^{2}+{\color {White}1}x}}{\color {White}{}-42}\\-10x^{2}-{\color {White}01}x-42\\{\underline {-10x^{2}+20x-10}}\\-21x-32\end{array}}}
The tangent line is y = âˆ' 21 x âˆ' 32. {\displaystyle y=-21x-32.}

Cyclic redundancy check

A cyclic redundancy check uses the remainder of polynomial division to detect errors in transmitted messages.

See also



source : www.pinterest.co.uk

  • Polynomial remainder theorem
  • Synthetic division, a more concise method of performing Euclidean polynomial division
  • Ruffini's rule
  • Euclidean domain
  • Gröbner basis
  • Greatest common divisor of two polynomials

Notes



source : catalog.flatworldknowledge.com



 
Sponsored Links