<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - comments on Post, beta function vs. sine</title>
    <link>http://www.mapleprimes.com/posts/144855-Beta-Function-Vs-Sine</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 22:18:18 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 22:18:18 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest comments added to the Post, beta function vs. sine</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - comments on Post, beta function vs. sine</title>
      <link>http://www.mapleprimes.com/posts/144855-Beta-Function-Vs-Sine</link>
    </image>
    <item>
      <title>example?</title>
      <link>http://www.mapleprimes.com/posts/144855-Beta-Function-Vs-Sine?ref=Feed:MaplePrimes:beta function vs. sine:Comments#comment144859</link>
      <itunes:summary>&lt;p&gt;I get in Maple 15.01:&lt;/p&gt;
&lt;pre&gt;int(1/(1+x^a), x=0..infinity); #no assumption on a !
                                          Pi
                                  Pi csc(----)
                                          a
                                  ------------
                                       a

int(1/(1+x^(5/2)), x=0..infinity); 
                                        Pi
                                 2/5 ---------
                                         2 Pi
                                     sin(----)
                                          5
&lt;/pre&gt;</itunes:summary>
      <description>The latest comments added to the Post, beta function vs. sine</description>
      <guid>144859</guid>
      <pubDate>Thu, 21 Mar 2013 07:49:57 Z</pubDate>
      <itunes:author>Alejandro Jakubi</itunes:author>
      <author>Alejandro Jakubi</author>
    </item>
    <item>
      <title>Try 7/2</title>
      <link>http://www.mapleprimes.com/posts/144855-Beta-Function-Vs-Sine?ref=Feed:MaplePrimes:beta function vs. sine:Comments#comment144862</link>
      <itunes:summary>&lt;p&gt;Try 7/2. I get a Beta function in Maple 17.&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Post, beta function vs. sine</description>
      <guid>144862</guid>
      <pubDate>Thu, 21 Mar 2013 08:20:50 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>Change</title>
      <link>http://www.mapleprimes.com/posts/144855-Beta-Function-Vs-Sine?ref=Feed:MaplePrimes:beta function vs. sine:Comments#comment144865</link>
      <itunes:summary>&lt;p&gt;And it might be attainable in Maple,&lt;/p&gt;
&lt;pre&gt;restart:

e1:=int(1/(1+x^(7/2)), x=0..infinity);

                          2     /2  5\
                          - Beta|-, -|
                          7     \7  7/

e2:=convert(e1,Int);

                  /1                             
              2  |              1                
              -  |   ----------------------- d_k1
              7  |      (5/7)          (2/7)     
                /0   _k1      (1 - _k1)    
      
e3:=subsindets(e2, specfunc(anything,Int),
           z-&amp;gt;IntegrationTools:-Change(z,
                IntegrationTools:-GetVariable(z)=1/x));

                    /infinity                  
                2  |                1          
                -  |          -------------- dx
                7  |                   (2/7)   
                  /1          x (x - 1)     
   
value(e3);

                         2       /2   \
                         - Pi csc|- Pi|
                         7       \7   /
&lt;/pre&gt;
&lt;!--break--&gt;
&lt;p&gt;And, FWIW...&lt;/p&gt;
&lt;pre&gt;H:=Int(1/(1+x^(7/2)), x=0..infinity);

                     /infinity              
                    |              1        
                    |          ---------- dx
                    |               (7/2)   
                   /0          1 + x     
   
evalf(%);

                          1.148070807

Q:=IntegrationTools:-Change(H,x=t-1):

simplify(allvalues(value(Q)));

          8     /      /1   \      /3   \        /2   \\
        - -- Pi |-2 sin|- Pi| + sin|- Pi| - 3 sin|- Pi||
          49    \      \7   /      \7   /        \7   //

evalf(%);

                          1.148070807
&lt;/pre&gt;
&lt;p&gt;acer&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Post, beta function vs. sine</description>
      <guid>144865</guid>
      <pubDate>Thu, 21 Mar 2013 09:07:12 Z</pubDate>
      <itunes:author>acer</itunes:author>
      <author>acer</author>
    </item>
    <item>
      <title>method cook</title>
      <link>http://www.mapleprimes.com/posts/144855-Beta-Function-Vs-Sine?ref=Feed:MaplePrimes:beta function vs. sine:Comments#comment144866</link>
      <itunes:summary>&lt;p&gt;OK. It is again the issue of the first successful method in the row. For a=5/2 and a=7/2 the first successful method is &lt;strong&gt;cook&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;infolevel[IntegrationTools]:=3:
int(1/(1+x^(5/2)), x=0..infinity); 

Definite Integration:   Integrating expression on x=0..infinity
Definite Integration:   Using the integrators [distribution, piecewise, series, o, polynomial, ln, lookup, cook, ratpoly, elliptic, elliptictrig, meijergspecial, improper, asymptotic, ftoc, ftocms, meijerg, contour]
LookUp Integrator:   unable to find the specified integral in the table
Cook LookUp Integrator:   returning answer from cook pattern 1a
Definite Integration:   Method cook succeeded.
Definite Integration:   Finished sucessfully.
                                        Pi
                                 2/5 ---------
                                         2 Pi
                                     sin(----)
                                          5

int(1/(1+x^(7/2)), x=0..infinity); 
Definite Integration:   Integrating expression on x=0..infinity
Definite Integration:   Using the integrators [distribution, piecewise, series, o, polynomial, ln, lookup, cook, ratpoly, elliptic, elliptictrig, meijergspecial, improper, asymptotic, ftoc, ftocms, meijerg, contour]
LookUp Integrator:   unable to find the specified integral in the table
Cook LookUp Integrator:   returning answer from cook pattern 1a
Definite Integration:   Method cook succeeded.
Definite Integration:   Finished sucessfully.
                               2/7 Beta(2/7, 5/7)
&lt;/pre&gt;
&lt;p&gt;Most interesting as both results in terms of &lt;strong&gt;sin&lt;/strong&gt; and &lt;strong&gt;Beta&lt;/strong&gt; arise from the same &lt;strong&gt;pattern 1a&lt;/strong&gt;. A workaround to get the answer in terms of &lt;strong&gt;sin&lt;/strong&gt; is suppressing the method &lt;strong&gt;cook&lt;/strong&gt;, so that the method &lt;strong&gt;meijergspecial&lt;/strong&gt; gets its oportunity:&lt;/p&gt;
&lt;pre&gt;int(1/(1+x^(7/2)), x=0..infinity,method=nocook); 
                                           3 Pi
                                2/7 Pi sec(----)
                                            14
convert(%,sin);
                                        Pi
                                 2/7 ---------
                                         5 Pi
                                     sin(----)
                                          7
&lt;/pre&gt;</itunes:summary>
      <description>The latest comments added to the Post, beta function vs. sine</description>
      <guid>144866</guid>
      <pubDate>Thu, 21 Mar 2013 09:12:07 Z</pubDate>
      <itunes:author>Alejandro Jakubi</itunes:author>
      <author>Alejandro Jakubi</author>
    </item>
    <item>
      <title>contour</title>
      <link>http://www.mapleprimes.com/posts/144855-Beta-Function-Vs-Sine?ref=Feed:MaplePrimes:beta function vs. sine:Comments#comment144869</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/posts/144855-Beta-Function-Vs-Sine#comment144866"&gt;@Alejandro Jakubi&lt;/a&gt;&amp;nbsp;Good observation, Alejandro. The `contour` method also gets it in M16.&lt;/p&gt;
&lt;pre&gt;int(1/(1+x^(7/2)), x=0..infinity, method=_RETURNVERBOSE);

simplify(allvalues(%)); # to simplify the two FTOC methods
&lt;/pre&gt;</itunes:summary>
      <description>The latest comments added to the Post, beta function vs. sine</description>
      <guid>144869</guid>
      <pubDate>Thu, 21 Mar 2013 09:35:40 Z</pubDate>
      <itunes:author>acer</itunes:author>
      <author>acer</author>
    </item>
    <item>
      <title>GAMMA</title>
      <link>http://www.mapleprimes.com/posts/144855-Beta-Function-Vs-Sine?ref=Feed:MaplePrimes:beta function vs. sine:Comments#comment144871</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/posts/144855-Beta-Function-Vs-Sine#comment144869"&gt;@acer&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In the "end", the differences or complication with method &lt;strong&gt;cook&lt;/strong&gt; can be traced to a peculiarity in the normalization of &lt;strong&gt;GAMMA&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;trace(GAMMA):
Beta(2/5,3/5); 
Beta(2/7,5/7);
&lt;/pre&gt;
&lt;p&gt;This problem of the first "successful" method producing a more complicated or wrong answer does occur too frequently, as posts here and elsewhere show. A better scheme is needed beyond sequentially trying methods. The probability of a user observing the output from the method &lt;strong&gt;_RETURNVERBOSE&lt;/strong&gt; is negligible. So, the potential of the definite integration methods implemented in Maple is underused.&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Post, beta function vs. sine</description>
      <guid>144871</guid>
      <pubDate>Thu, 21 Mar 2013 10:10:52 Z</pubDate>
      <itunes:author>Alejandro Jakubi</itunes:author>
      <author>Alejandro Jakubi</author>
    </item>
  </channel>
</rss>