AIrreduc
inert absolute irreducibility function
Calling Sequence
Parameters
Description
Examples
References
AIrreduc(P)
AIrreduc(P, S)
P
-
multivariate polynomial
S
(optional) set or list of prime integers
The AIrreduc function is a placeholder for testing the absolute irreducibility of the polynomial P, that is irreducibility over an algebraic closure of its coefficient field. It is used in conjunction with evala.
The call evala(AIrreduc(P)) tests the absolute irreducibility of the polynomial P over the field of complex numbers. The polynomial P must have algebraic number coefficients in RootOf notation (see algnum).
A univariate polynomial is absolutely irreducible if and only if it is of degree 1.
The function AIrreduc looks for sufficient conditions of absolute reducibility or irreducibility. It returns true if the polynomial P is detected absolutely irreducible, false if it is detected absolutely reducible, FAIL otherwise.
In the case of nonrational coefficients, only trivial conditions are tested.
If the polynomial P has rational coefficients, an absolute irreducibility criterion is sought over the reduction of P modulo p, where p runs through a set of prime integers. If S is given, the primes in S are used. Otherwise, the first ten odd primes and the first five primes greater than the degree of P are chosen. Although the probability for P to be absolutely reducible in case of failure is not controlled, it is very likely that P can be factored.
f≔92⁢x9⁢y−93⁢x2⁢y2+91⁢x7⁢y3+y4+x10
f≔x10+92⁢x9⁢y+91⁢x7⁢y3−93⁢x2⁢y2+y4
evala⁡AIrreduc⁡f
true
alias⁡a=RootOf⁡T3−2
a
f≔a⁢y3+a⁢y3⁢x+13⁢a⁢y2−7⁢x⁢y−7⁢x2⁢y−91⁢x
f≔a⁢y3⁢x+a⁢y3+13⁢a⁢y2−7⁢x2⁢y−7⁢x⁢y−91⁢x
false
evala⁡AFactor⁡f
−7⁢x⁢y+y+13⁢−a⁢y27+x
f≔−2⁢y2⁢x2+y2+10⁢x2⁢y+25⁢x4
f≔25⁢x4−2⁢y2⁢x2+10⁢x2⁢y+y2
FAIL
25⁢x⁢y⁢RootOf⁡_Z2−25+x2+y5⁢−x⁢y⁢RootOf⁡_Z2−25+x2+y5
The following polynomial is absolutely irreducible, but has been specially constructed to deceive the test. This example illustrates the usefulness of the optional argument.
f≔48778⁢x3+275894451⁢y6−1188761805⁢y5⁢x+1707361425⁢y4⁢x2−817400375⁢x3⁢y3+1232777⁢y3
f≔−817400375⁢x3⁢y3+1707361425⁢y4⁢x2−1188761805⁢y5⁢x+275894451⁢y6+48778⁢x3+1232777⁢y3
evala⁡AIrreduc⁡f,37,43
Ragot, Jean-Francois. "Probabilistic Absolute Irreducibility Test of Polynomials." In Proceedings of MEGA '98. 1998.
See Also
AFactor
alias
evala
irreduc
Irreduc
RootOf
Download Help Document