<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - comments on Post, 16 years later</title>
    <link>http://www.mapleprimes.com/posts/39857-16-Years-Later</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Thu, 11 Jun 2026 05:30:38 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 05:30:38 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest comments added to the Post, 16 years later</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - comments on Post, 16 years later</title>
      <link>http://www.mapleprimes.com/posts/39857-16-Years-Later</link>
    </image>
    <item>
      <title>historical a</title>
      <link>http://www.mapleprimes.com/posts/39857-16-Years-Later?ref=Feed:MaplePrimes:16 years later:Comments#comment73033</link>
      <itunes:summary>&lt;p&gt;You had a UUCP link to a server that bridged to internet?&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Post, 16 years later</description>
      <guid>73033</guid>
      <pubDate>Thu, 06 Mar 2008 05:12:10 Z</pubDate>
      <itunes:author>jakubi</itunes:author>
      <author>jakubi</author>
    </item>
    <item>
      <title>Yep</title>
      <link>http://www.mapleprimes.com/posts/39857-16-Years-Later?ref=Feed:MaplePrimes:16 years later:Comments#comment84002</link>
      <itunes:summary>&lt;p&gt;That is a correct answer to question a.&amp;nbsp; Of course watmath.uwaterloo.edu doesn't exist anymore, it is now math.waterloo.ca.&amp;nbsp; The IBM AIX machine that as called wmsical is also long long gone - but it served as Maplesoft's main mail server for many years.&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Post, 16 years later</description>
      <guid>84002</guid>
      <pubDate>Thu, 06 Mar 2008 05:19:35 Z</pubDate>
      <itunes:author>JacquesC</itunes:author>
      <author>JacquesC</author>
    </item>
    <item>
      <title>Easier by residues?</title>
      <link>http://www.mapleprimes.com/posts/39857-16-Years-Later?ref=Feed:MaplePrimes:16 years later:Comments#comment83999</link>
      <itunes:summary>I do not know if improvement, but I would have made it otherwise, calculating
by residues:

&lt;pre&gt;
with(IntegrationTools):
with(plots):
J := Int(1/(y^4-2*y^3+2*I*r*y^2-2*I*r*y-r^2),y=-1..1);
f:=GetIntegrand(J);
s:=singular(f,y);
&lt;/pre&gt;

&lt;maple&gt;
s := {y = (-I*r)^(1/2)}, {y = -(-I*r)^(1/2)}, {y = 1-(1-I*r)^(1/2)}, {y =
1+(1-I*r)^(1/2)};
&lt;/maple&gt;

Numerically:

&lt;pre&gt;
L:=map(x-&gt;op([1,2],x),[s]);
L1:=eval(L,r=0.1);

L1 := [.2236067978-.2236067978*I, -.2236067978+.2236067978*I,
-.1246114e-2+.4993777184e-1*I, 2.001246114-.4993777184e-1*I]
&lt;/pre&gt;

And ploted:

&lt;pre&gt;
complexplot(L1,view=[-3..3,-0.3..0.3],style=point,symbol=solidbox,color=red,axes=normal);
&lt;/pre&gt;

I choose as path on the complex plane the segment on the real axis (-1,1), the
straight lines from its end points down to +/1-I*infinity, and closed at
infinity. It encloses the first pole above, and its residue times (2*I*Pi) can
be calculated as:

&lt;pre&gt;
f1:=factor(f);
(2*I*Pi)*residue(f1,op(s[1]));
&lt;/pre&gt;

&lt;maple&gt;
1/2*Pi/r
&lt;/maple&gt;

With a minus sign gives the value of the integral along this path made in
clockwise sense.

Now, the contribution at infinity and the half infinity stright lines is
finite and can be expanded in powers of r (easy to do).

Hence the leading contribution to J as r-&gt;0 is

&lt;maple&gt;
-1/2*Pi/r
&lt;/maple&gt;







</itunes:summary>
      <description>The latest comments added to the Post, 16 years later</description>
      <guid>83999</guid>
      <pubDate>Thu, 06 Mar 2008 08:22:39 Z</pubDate>
      <itunes:author>jakubi</itunes:author>
      <author>jakubi</author>
    </item>
    <item>
      <title>assuming</title>
      <link>http://www.mapleprimes.com/posts/39857-16-Years-Later?ref=Feed:MaplePrimes:16 years later:Comments#comment92938</link>
      <itunes:summary>&lt;p&gt;All you need to do nowadays is&lt;/p&gt;
&lt;p&gt;&amp;gt; int(1/(y^4-2*y^3+2*I*r*y^2-2*I*r*y-r^2),y=-1..1) assuming r &amp;gt; 0;&lt;/p&gt;
&lt;p&gt;&lt;maple&gt;-1/8*(ln(r^2+9)*(-1+r*I)^(1/2)*I+2*arctan(3/r)*(-1+r*I)^(1/2)+4*I*arctan(2/(-1+r*I)^(1/2))-I*ln(r^2+1)*(-1+r*I)^(1/2)+2*arctan(1/r)*(-1+r*I)^(1/2))/r/(-1+r*I)^(1/2)&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;&amp;gt; map(normal, series(%,r)) assuming r &amp;gt; 0;&lt;/p&gt;
&lt;p&gt;&lt;maple&gt;series((-1/2*Pi)*r^(-1)+(-1/8*ln(3)-1/8*I*Pi+1/2)+(3/32*Pi-3/32*I*ln(3)+5/24*I)*r+(-25/144+5/64*I*Pi+5/64*ln(3))*r^2(-1415/10368*I-35/512*Pi+35/512*I*ln(3))*r^3+(-63/1024*ln(3)-63/1024*I*Pi+12223/103680)*r^4+O(r^5),r,5)&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Post, 16 years later</description>
      <guid>92938</guid>
      <pubDate>Thu, 06 Mar 2008 09:10:43 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>Super-difficult history challenge</title>
      <link>http://www.mapleprimes.com/posts/39857-16-Years-Later?ref=Feed:MaplePrimes:16 years later:Comments#comment73018</link>
      <itunes:summary>&lt;p&gt;Was the corporate name Maplesoft coined by a woman?&lt;/p&gt;
&lt;p&gt;Dave Linder&lt;br /&gt;
Mathematical Software, Maplesoft&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Post, 16 years later</description>
      <guid>73018</guid>
      <pubDate>Thu, 06 Mar 2008 10:02:27 Z</pubDate>
      <itunes:author>Dave L</itunes:author>
      <author>Dave L</author>
    </item>
    <item>
      <title>Yes it was</title>
      <link>http://www.mapleprimes.com/posts/39857-16-Years-Later?ref=Feed:MaplePrimes:16 years later:Comments#comment83995</link>
      <itunes:summary>&lt;p&gt;That probably gives it away...&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Post, 16 years later</description>
      <guid>83995</guid>
      <pubDate>Thu, 06 Mar 2008 18:09:41 Z</pubDate>
      <itunes:author>JacquesC</itunes:author>
      <author>JacquesC</author>
    </item>
  </channel>
</rss>