<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Error, (in factors) Bad inputs to diophant.</title>
    <link>http://www.mapleprimes.com/questions/143500-Error-in-Factors-Bad-Inputs-To-Diophant</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 07:25:19 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 07:25:19 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Error, (in factors) Bad inputs to diophant.</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Error, (in factors) Bad inputs to diophant.</title>
      <link>http://www.mapleprimes.com/questions/143500-Error-in-Factors-Bad-Inputs-To-Diophant</link>
    </image>
    <item>
      <title>evala/Factors/efactor</title>
      <link>http://www.mapleprimes.com/questions/143500-Error-in-Factors-Bad-Inputs-To-Diophant?ref=Feed:MaplePrimes:Error, (in factors) Bad inputs to diophant.:Comments#answer143514</link>
      <itunes:summary>&lt;p&gt;It's possibly a bug or a bad case for `evala/Factors/efactor` which is the final factorization method used by Maple with algebraic extensions. &amp;nbsp;You can see the code:&lt;/p&gt;
&lt;p&gt;kernelopts(opaquemodules=false): interface(verboseproc=3):&lt;/p&gt;
&lt;p&gt;eval(`evala/Factors/efactor`:-diophant);&lt;/p&gt;
&lt;p&gt;The help page for &lt;a href='http://www.maplesoft.com/support/help/search.aspx?term=evala,Factors' target='_new'&gt;?evala,Factors&lt;/a&gt; says you can try different factorization methods, but I don't see this in the code. &amp;nbsp;I think the documentation is out of date.&lt;/p&gt;
&lt;p&gt;evala(Factor(f,{I,sqrt(3)}), trager);&lt;/p&gt;
&lt;p&gt;evala(Factor(f,{I,sqrt(3)}), lenstra);&lt;/p&gt;
&lt;p&gt;You should try to post some source code that we can run.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;It's possibly a bug or a bad case for `evala/Factors/efactor` which is the final factorization method used by Maple with algebraic extensions. &amp;nbsp;You can see the code:&lt;/p&gt;
&lt;p&gt;kernelopts(opaquemodules=false): interface(verboseproc=3):&lt;/p&gt;
&lt;p&gt;eval(`evala/Factors/efactor`:-diophant);&lt;/p&gt;
&lt;p&gt;The help page for &lt;a href='http://www.maplesoft.com/support/help/search.aspx?term=evala,Factors' target='_new'&gt;?evala,Factors&lt;/a&gt; says you can try different factorization methods, but I don't see this in the code. &amp;nbsp;I think the documentation is out of date.&lt;/p&gt;
&lt;p&gt;evala(Factor(f,{I,sqrt(3)}), trager);&lt;/p&gt;
&lt;p&gt;evala(Factor(f,{I,sqrt(3)}), lenstra);&lt;/p&gt;
&lt;p&gt;You should try to post some source code that we can run.&lt;/p&gt;</description>
      <guid>143514</guid>
      <pubDate>Fri, 15 Feb 2013 11:40:04 Z</pubDate>
      <itunes:author>roman_pearce</itunes:author>
      <author>roman_pearce</author>
    </item>
    <item>
      <title>Example</title>
      <link>http://www.mapleprimes.com/questions/143500-Error-in-Factors-Bad-Inputs-To-Diophant?ref=Feed:MaplePrimes:Error, (in factors) Bad inputs to diophant.:Comments#comment145206</link>
      <itunes:summary>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;at last I can reproduce the error reliably. On all four machines I could test it, the following commands result in the error mentioned above upon the very last factors()-call:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;L := [t+x[1],t+x[2],t+x[3],x[3]*t+x[2]*x[1],t+x[1]+x[2]+x[3],x[3]*(t+x[1]),x[1]*x[3]+x[2]*t,x[2]+t+x[3],x[2]+x[3],t+x[1]+x[2],x[1]+x[2],x[1]*x[2]+x[3]+t,x[1]*(x[2]+x[3]),x[1]+x[2]+x[3]*t,x[1]*x[3]+(t+x[2])^2]:&lt;/p&gt;
&lt;p&gt;K := {I,sqrt(2),sqrt(3),sqrt(5)}:&lt;br&gt;#K := {sqrt(2),sqrt(3),sqrt(5)}:&lt;/p&gt;
&lt;p&gt;for p in L do&lt;br&gt;&amp;nbsp; print(p):&lt;br&gt;&amp;nbsp; factors(p, K):&lt;br&gt;end do:&lt;br&gt;&lt;br&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The error disappears when I remove any of the four roots in K (e.g. replacing K by the commented line). &lt;strong&gt;Most distractlingly, the error also vanishes upon renaming any of the variables x[1], x[2], x[3] by s (or u or v or ...)!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I have no idea how this is possible and would very much appreciate any help.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you and best wishes,&lt;/p&gt;
&lt;p&gt;Erik&lt;/p&gt;
&lt;p&gt;Note: Removing any of the polynomials in L also makes the error go away.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;at last I can reproduce the error reliably. On all four machines I could test it, the following commands result in the error mentioned above upon the very last factors()-call:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;L := [t+x[1],t+x[2],t+x[3],x[3]*t+x[2]*x[1],t+x[1]+x[2]+x[3],x[3]*(t+x[1]),x[1]*x[3]+x[2]*t,x[2]+t+x[3],x[2]+x[3],t+x[1]+x[2],x[1]+x[2],x[1]*x[2]+x[3]+t,x[1]*(x[2]+x[3]),x[1]+x[2]+x[3]*t,x[1]*x[3]+(t+x[2])^2]:&lt;/p&gt;
&lt;p&gt;K := {I,sqrt(2),sqrt(3),sqrt(5)}:&lt;br&gt;#K := {sqrt(2),sqrt(3),sqrt(5)}:&lt;/p&gt;
&lt;p&gt;for p in L do&lt;br&gt;&amp;nbsp; print(p):&lt;br&gt;&amp;nbsp; factors(p, K):&lt;br&gt;end do:&lt;br&gt;&lt;br&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The error disappears when I remove any of the four roots in K (e.g. replacing K by the commented line). &lt;strong&gt;Most distractlingly, the error also vanishes upon renaming any of the variables x[1], x[2], x[3] by s (or u or v or ...)!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I have no idea how this is possible and would very much appreciate any help.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you and best wishes,&lt;/p&gt;
&lt;p&gt;Erik&lt;/p&gt;
&lt;p&gt;Note: Removing any of the polynomials in L also makes the error go away.&lt;/p&gt;</description>
      <guid>145206</guid>
      <pubDate>Thu, 28 Mar 2013 15:11:49 Z</pubDate>
      <itunes:author>ErikP</itunes:author>
      <author>ErikP</author>
    </item>
    <item>
      <title>Hello,could anyone else reproduce this error? Oth...</title>
      <link>http://www.mapleprimes.com/questions/143500-Error-in-Factors-Bad-Inputs-To-Diophant?ref=Feed:MaplePrimes:Error, (in factors) Bad inputs to diophant.:Comments#comment147427</link>
      <itunes:summary>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;could anyone else reproduce this error? Otherwise I have to search the problem in my Maple installation.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Erik&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;could anyone else reproduce this error? Otherwise I have to search the problem in my Maple installation.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Erik&lt;/p&gt;</description>
      <guid>147427</guid>
      <pubDate>Tue, 21 May 2013 13:01:50 Z</pubDate>
      <itunes:author>ErikP</itunes:author>
      <author>ErikP</author>
    </item>
    <item>
      <title>reproducible</title>
      <link>http://www.mapleprimes.com/questions/143500-Error-in-Factors-Bad-Inputs-To-Diophant?ref=Feed:MaplePrimes:Error, (in factors) Bad inputs to diophant.:Comments#comment147429</link>
      <itunes:summary>&lt;p&gt;Yes, I can reproduce it in Maple 16.02. It does not occur in Maple 17 nor in earlier versions that I have tried (15.01, 14.01, etc)&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Yes, I can reproduce it in Maple 16.02. It does not occur in Maple 17 nor in earlier versions that I have tried (15.01, 14.01, etc)&lt;/p&gt;</description>
      <guid>147429</guid>
      <pubDate>Tue, 21 May 2013 13:49:55 Z</pubDate>
      <itunes:author>Alejandro Jakubi</itunes:author>
      <author>Alejandro Jakubi</author>
    </item>
    <item>
      <title>Workaround</title>
      <link>http://www.mapleprimes.com/questions/143500-Error-in-Factors-Bad-Inputs-To-Diophant?ref=Feed:MaplePrimes:Error, (in factors) Bad inputs to diophant.:Comments#comment147828</link>
      <itunes:summary>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;as this issue is a severe obstacle to my calculations (I can not factor reliably over extensions of Q) I was wondering if there is at least some work-around available?&lt;/p&gt;
&lt;p&gt;Unfortunately I can not resort to previous or newer versions of Maple.&lt;/p&gt;
&lt;p&gt;So in short, is there any (correctly working) way in Maple 16 to factor polynomials over algebraic extensions of the rationals?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Erik&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;as this issue is a severe obstacle to my calculations (I can not factor reliably over extensions of Q) I was wondering if there is at least some work-around available?&lt;/p&gt;
&lt;p&gt;Unfortunately I can not resort to previous or newer versions of Maple.&lt;/p&gt;
&lt;p&gt;So in short, is there any (correctly working) way in Maple 16 to factor polynomials over algebraic extensions of the rationals?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Erik&lt;/p&gt;</description>
      <guid>147828</guid>
      <pubDate>Wed, 29 May 2013 11:22:32 Z</pubDate>
      <itunes:author>ErikP</itunes:author>
      <author>ErikP</author>
    </item>
  </channel>
</rss>