多项式长除法
多项式长除法 是代数中的一种算法,用一个同次或低次的多项式去除另一个多项式。是常见算数技巧长除法的一个推广版本。它可以很容易地手算,因为它将一个相对复杂的除法问题分解成更小的一些问题。
目录 |
[编辑] 例
计算
写成以下这种形式:
然后商和余数可以这样计算:
- 将分子的第一项除以分母的最高次项(即次数最高的项,此处为x)。结果写在横线之上(x3 ÷ x = x2).
- 将分母乘以刚得到结果(最终商的第一项),乘积写在分子前两项之下 (x2 · (x − 3) = x3 − 3x2).
- 从分子的相应项中减去刚得到的乘积(注意减一个负项相当于加一个正项),结果写在下面。((x3 − 12x2) − (x3 − 3x2) = −12x2 + 3x2 = −9x2)然后,将分子的下一项“拿下来”。
- 重复前三步,只是现在用的是刚写作分子的那两项
- 重复第四步。这次没什么可以“拿下来”了。
横线之上的多项式即为商,而剩下的 (−123) 就是余数。
算数的长除法可以看做以上算法的一个特殊情形,即所有 x 被替换为10的情形。
[编辑] 除法变换
使用多项式长除法可以将一个多项式写成 除数-商 的形式(经常很有用)。 考虑多项式 P(x), D(x) ((D)的次数 < (P)的次数)。 然后,对某个商多项式 Q(x) 和余数多项式 R(x) ((R)的系数 < (D)的系数),
这种变换叫做除法变换,是从算数等式
.[1] 得到的。
[编辑] 应用
[编辑] 多项式的因式分解
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 Q(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.
[编辑] 寻找多项式的切线
Polynomial long division can be used to find the equation of the line that is tangent to a polynomial at a particular point.[2] If R(x) is the remainder when P(x) is divided by (x – r )2 — that is, by x2 – 2rx + r 2 — then the equation of the tangent line to P(x) at x = r is y = R(x) (regardless of whether or not r is a root of the polynomial).
[编辑] 参见
- Polynomial remainder theorem
- Synthetic division, a more concise method of performing polynomial long division
- Ruffini's rule
- Euclidean domain
- Gröbner basis
- Greatest common divisor of two polynomials
[编辑] 引用
- ^ S. Barnard. Higher Algebra. READ BOOKS. 2008: 24. ISBN 1443730866.
- ^ Strickland-Constable, Charles, "A simple method for finding tangents to polynomial graphs", Mathematical Gazette 89, November 2005: 466-467.








