PolynomialTools
Splits
find a complete factorization of a polynomial
Calling Sequence
Parameters
Description
Examples
Splits(a, x, b)
a
-
polynomial with algebraic number or polynomial coefficients
x
variable
b
(optional) name
The Splits(a, x) function computes the complete factorization of the univariate polynomial a in x.
The factorization is returned in the form u,f1,m1,...,fn,mn such that a=u⁢f1m1...fnmn, where each fk is a unit normal irreducible polynomial and its multiplicity mk is a positive integer.
If the third argument b is specified, it is assigned a set of elements {t1,...,tm} such that the polynomial a splits over K=Q⁡t1,...,tm, where Q denotes the field of rational numbers.
This function is part of the PolynomialTools package, and so it can be used in the form Splits(..) only after executing the command with(PolynomialTools). However, it can always be accessed through the long form of the command by using PolynomialTools[Splits](..).
with⁡PolynomialTools:
Splits⁡x2+x+1,x
1,x+1+RootOf⁡_Z2+_Z+1,1,x−RootOf⁡_Z2+_Z+1,1
Splits⁡x2+y⁢x+1+y2,x,b
1,x+y+RootOf⁡_Z2+y⁢_Z+y2+1,1,x−RootOf⁡_Z2+y⁢_Z+y2+1,1
RootOf⁡_Z2+y⁢_Z+y2+1
See Also
AFactor
PolynomialTools[Split]
RootOf
Download Help Document