GaloisGroupFactorizationUtilities(R, UP, F)ΒΆ
galfact.spad line 205 [edit on github]
R: Ring
F: Join(FloatingPointSystem, RetractableTo R, Field, TranscendentalFunctionCategory, ElementaryFunctionCategory)
GaloisGroupFactorizationUtilities provides functions that will be used by the factorizer.
- beauzamyBound: UP -> Integer
beauzamyBound(p)
returns a bound on the larger coefficient of any factor ofp
.
- bombieriNorm: (UP, PositiveInteger) -> F
bombieriNorm(p, n)
returns then
th Bombieri's
norm ofp
.
- bombieriNorm: UP -> F
bombieriNorm(p)
returns quadratic Bombieri's
norm ofp
.
- height: UP -> F
height(p)
returns the maximal absolute value of the coefficients of the polynomialp
.
- infinityNorm: UP -> F
infinityNorm(f)
returns the maximal absolute value of the coefficients of the polynomialf
.
- length: UP -> F
length(p)
returns the sum of the absolute values of the coefficients of the polynomialp
.
- norm: (UP, PositiveInteger) -> F
norm(f, p)
returns thelp
norm of the polynomialf
.
- quadraticNorm: UP -> F
quadraticNorm(f)
returns thel2
norm of the polynomialf
.
- rootBound: UP -> Integer
rootBound(p)
returns a bound on the largest norm of the complex roots ofp
.
- singleFactorBound: (UP, NonNegativeInteger) -> Integer
singleFactorBound(p, r)
returns a bound on the infinite norm of the factor ofp
with smallest Bombieri's
norm.r
is a lower bound for the number of factors ofp
.p
shall be of degree higher or equal to 2.
- singleFactorBound: UP -> Integer
singleFactorBound(p)
returns a bound on the infinite norm of the factor ofp
with smallest Bombieri's
norm.p
shall be of degree higher or equal to 2.