<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Float problem for Integral expression</title>
    <link>http://www.mapleprimes.com/questions/143388-Float-Problem-For-Integral-Expression</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 16 Jun 2026 07:40:32 GMT</lastBuildDate>
    <pubDate>Tue, 16 Jun 2026 07:40:32 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Float problem for Integral expression</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Float problem for Integral expression</title>
      <link>http://www.mapleprimes.com/questions/143388-Float-Problem-For-Integral-Expression</link>
    </image>
    <item>
      <title>beta(beta) problem (not critical though)</title>
      <link>http://www.mapleprimes.com/questions/143388-Float-Problem-For-Integral-Expression?ref=Feed:MaplePrimes:Float problem for Integral expression:Comments#answer143395</link>
      <itunes:summary>&lt;p&gt;In your infinity version there appear factors beta(beta), they should just be beta. See comment at the end, though.&lt;br&gt;Specifically, you have&lt;/p&gt;
&lt;p&gt;1/c1 = 6.274557048*10^8*(Int((32.*sin(0.5000000000e-1*beta)/beta+(960.*(cos(0.5000000000e-1*beta)-40.*sin(0.5000000000e-1*beta)/beta+1600.*sin(0.2500000000e-1*beta)^2/beta^2))/beta^2)^2/((75*(1.50*tanh(beta)*beta(beta)+1))/(75+0.2e-1*tanh(beta)*beta(beta))+2.32*coth(beta)*beta(beta)), beta = 0 .. infinity));&lt;br&gt;#You see the appearance of beta(beta).&lt;br&gt;#Let A be the integral (using Int):&lt;/p&gt;
&lt;p&gt;A:=Int((32.*sin(0.5000000000e-1*beta)/beta+(960.*(cos(0.5000000000e-1*beta)-40.*sin(0.5000000000e-1*beta)/beta+1600.*sin(0.2500000000e-1*beta)^2/beta^2))/beta^2)^2/((75*(1.50*tanh(beta)*beta(beta)+1))/(75+0.2e-1*tanh(beta)*beta(beta))+2.32*coth(beta)*beta(beta)), beta = 0 .. infinity);&lt;br&gt;#Now do&lt;br&gt;subs(beta(beta)=beta,A); &lt;br&gt;B:=normal(%);&lt;br&gt;#This integral can be evaluated, but it is not all that easy. The problem is not at beta = 0.&lt;br&gt;f:=IntegrationTools:-GetIntegrand(B);&lt;br&gt;asympt(f,beta, 9);&lt;br&gt;series(f,beta=0, 9);&lt;br&gt;plot(f,beta=0..100);&lt;br&gt;evalf(Int(f,beta=0..1000));&lt;br&gt;evalf(Int(f,beta=0..5000));&lt;/p&gt;
&lt;p&gt;More work could be done on this, of course. You could try something like:&lt;/p&gt;
&lt;p&gt;evalf[15](Int(f,beta=0..10000,method = _d01akc));&lt;br&gt;#and&lt;br&gt;evalf[15](Int(f,beta=0..200000,method = _d01akc,epsilon=1e-10));&lt;br&gt;#for large values of beta f is bounded from above by&lt;br&gt;g:=eval(f,{sin=1,cos=1,tanh=1,coth=1,-38400.=38400});&lt;br&gt;#so you can get an upper bound for the error by computing:&lt;br&gt;evalf[15](Int(g,beta=200000..infinity));&lt;br&gt;&lt;br&gt;&lt;strong&gt;Comment on beta(beta):&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Try the following&lt;br&gt;restart;&lt;br&gt;evalf(Int(beta(beta),beta=0..1));&lt;br&gt;evalf(Int(beta,beta=0..1));&lt;br&gt;int(beta(beta),beta=0..1);&lt;br&gt;#The reason the numerical integration works is that in Maple the result of &lt;br&gt;5(5);&lt;br&gt;#is 5, as is&lt;br&gt;5(x);&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;In your infinity version there appear factors beta(beta), they should just be beta. See comment at the end, though.&lt;br&gt;Specifically, you have&lt;/p&gt;
&lt;p&gt;1/c1 = 6.274557048*10^8*(Int((32.*sin(0.5000000000e-1*beta)/beta+(960.*(cos(0.5000000000e-1*beta)-40.*sin(0.5000000000e-1*beta)/beta+1600.*sin(0.2500000000e-1*beta)^2/beta^2))/beta^2)^2/((75*(1.50*tanh(beta)*beta(beta)+1))/(75+0.2e-1*tanh(beta)*beta(beta))+2.32*coth(beta)*beta(beta)), beta = 0 .. infinity));&lt;br&gt;#You see the appearance of beta(beta).&lt;br&gt;#Let A be the integral (using Int):&lt;/p&gt;
&lt;p&gt;A:=Int((32.*sin(0.5000000000e-1*beta)/beta+(960.*(cos(0.5000000000e-1*beta)-40.*sin(0.5000000000e-1*beta)/beta+1600.*sin(0.2500000000e-1*beta)^2/beta^2))/beta^2)^2/((75*(1.50*tanh(beta)*beta(beta)+1))/(75+0.2e-1*tanh(beta)*beta(beta))+2.32*coth(beta)*beta(beta)), beta = 0 .. infinity);&lt;br&gt;#Now do&lt;br&gt;subs(beta(beta)=beta,A); &lt;br&gt;B:=normal(%);&lt;br&gt;#This integral can be evaluated, but it is not all that easy. The problem is not at beta = 0.&lt;br&gt;f:=IntegrationTools:-GetIntegrand(B);&lt;br&gt;asympt(f,beta, 9);&lt;br&gt;series(f,beta=0, 9);&lt;br&gt;plot(f,beta=0..100);&lt;br&gt;evalf(Int(f,beta=0..1000));&lt;br&gt;evalf(Int(f,beta=0..5000));&lt;/p&gt;
&lt;p&gt;More work could be done on this, of course. You could try something like:&lt;/p&gt;
&lt;p&gt;evalf[15](Int(f,beta=0..10000,method = _d01akc));&lt;br&gt;#and&lt;br&gt;evalf[15](Int(f,beta=0..200000,method = _d01akc,epsilon=1e-10));&lt;br&gt;#for large values of beta f is bounded from above by&lt;br&gt;g:=eval(f,{sin=1,cos=1,tanh=1,coth=1,-38400.=38400});&lt;br&gt;#so you can get an upper bound for the error by computing:&lt;br&gt;evalf[15](Int(g,beta=200000..infinity));&lt;br&gt;&lt;br&gt;&lt;strong&gt;Comment on beta(beta):&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Try the following&lt;br&gt;restart;&lt;br&gt;evalf(Int(beta(beta),beta=0..1));&lt;br&gt;evalf(Int(beta,beta=0..1));&lt;br&gt;int(beta(beta),beta=0..1);&lt;br&gt;#The reason the numerical integration works is that in Maple the result of &lt;br&gt;5(5);&lt;br&gt;#is 5, as is&lt;br&gt;5(x);&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
      <guid>143395</guid>
      <pubDate>Tue, 12 Feb 2013 21:11:04 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>Function beta can be any value....but that was&amp;nbsp;</title>
      <link>http://www.mapleprimes.com/questions/143388-Float-Problem-For-Integral-Expression?ref=Feed:MaplePrimes:Float problem for Integral expression:Comments#answer143582</link>
      <itunes:summary>&lt;p&gt;&lt;span&gt;Function beta can be any value....but that was&amp;nbsp;&lt;strong&gt;(0.787*beta)&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;span&gt;Function beta can be any value....but that was&amp;nbsp;&lt;strong&gt;(0.787*beta)&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <guid>143582</guid>
      <pubDate>Sun, 17 Feb 2013 13:27:45 Z</pubDate>
      <itunes:author>mtj4u</itunes:author>
      <author>mtj4u</author>
    </item>
    <item>
      <title>suggestion for clarity</title>
      <link>http://www.mapleprimes.com/questions/143388-Float-Problem-For-Integral-Expression?ref=Feed:MaplePrimes:Float problem for Integral expression:Comments#answer143583</link>
      <itunes:summary>&lt;p&gt;A suggestion for clarity: do &lt;strong&gt;not&lt;/strong&gt; use the same name beta for different things.&lt;/p&gt;
&lt;p&gt;If you mean a function then name it p, for example, like p&lt;span&gt;(0.787*beta)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Then it makes it clear, that you have to tell us what p stands for,&lt;br&gt;it does not make much sense to say 'can be any value'&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;A suggestion for clarity: do &lt;strong&gt;not&lt;/strong&gt; use the same name beta for different things.&lt;/p&gt;
&lt;p&gt;If you mean a function then name it p, for example, like p&lt;span&gt;(0.787*beta)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Then it makes it clear, that you have to tell us what p stands for,&lt;br&gt;it does not make much sense to say 'can be any value'&lt;/p&gt;</description>
      <guid>143583</guid>
      <pubDate>Sun, 17 Feb 2013 16:13:17 Z</pubDate>
      <itunes:author>Axel Vogt</itunes:author>
      <author>Axel Vogt</author>
    </item>
    <item>
      <title>when I put limit range 0-infinity  it gives me Float (∞) error</title>
      <link>http://www.mapleprimes.com/questions/143388-Float-Problem-For-Integral-Expression?ref=Feed:MaplePrimes:Float problem for Integral expression:Comments#answer143725</link>
      <itunes:summary>&lt;p&gt;Dear&amp;nbsp;&lt;a href="http://www.mapleprimes.com/users/Preben%20Alsholm"&gt;Preben Alsholm&lt;/a&gt;&amp;nbsp;/&amp;nbsp;&lt;a href="http://www.mapleprimes.com/users/Axel%20Vogt"&gt;Axel Vogt&lt;/a&gt;,&lt;/p&gt;
&lt;p&gt;Thanks for ur reply and suggestions, Now take a look in attached file &amp;nbsp;&lt;a href="/view.aspx?sf=143725/454362/For_prime.mw"&gt;For_prime.mw&lt;/a&gt; &amp;nbsp; where I have put each in everything in detial, I think this time it you will not create ambiguity&lt;/p&gt;
&lt;p&gt;Thanks &amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Dear&amp;nbsp;&lt;a href="http://www.mapleprimes.com/users/Preben%20Alsholm"&gt;Preben Alsholm&lt;/a&gt;&amp;nbsp;/&amp;nbsp;&lt;a href="http://www.mapleprimes.com/users/Axel%20Vogt"&gt;Axel Vogt&lt;/a&gt;,&lt;/p&gt;
&lt;p&gt;Thanks for ur reply and suggestions, Now take a look in attached file &amp;nbsp;&lt;a href="/view.aspx?sf=143725/454362/For_prime.mw"&gt;For_prime.mw&lt;/a&gt; &amp;nbsp; where I have put each in everything in detial, I think this time it you will not create ambiguity&lt;/p&gt;
&lt;p&gt;Thanks &amp;nbsp;&lt;/p&gt;</description>
      <guid>143725</guid>
      <pubDate>Thu, 21 Feb 2013 10:18:17 Z</pubDate>
      <itunes:author>mtj4u</itunes:author>
      <author>mtj4u</author>
    </item>
    <item>
      <title>Answer to latest version</title>
      <link>http://www.mapleprimes.com/questions/143388-Float-Problem-For-Integral-Expression?ref=Feed:MaplePrimes:Float problem for Integral expression:Comments#answer143732</link>
      <itunes:summary>&lt;p&gt;In your uploaded file &lt;em&gt;For_prime.mw&lt;/em&gt; you provided an image. It would have spared me some time if you had typed in the integral.&lt;br&gt;However, I typed it.&lt;br&gt;I have uploaded a worksheet:&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=143732/454376/MaplePrimes13-02-16I.mw"&gt;MaplePrimes13-02-16I.mw&lt;/a&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;In your uploaded file &lt;em&gt;For_prime.mw&lt;/em&gt; you provided an image. It would have spared me some time if you had typed in the integral.&lt;br&gt;However, I typed it.&lt;br&gt;I have uploaded a worksheet:&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=143732/454376/MaplePrimes13-02-16I.mw"&gt;MaplePrimes13-02-16I.mw&lt;/a&gt;&lt;/p&gt;</description>
      <guid>143732</guid>
      <pubDate>Thu, 21 Feb 2013 22:07:49 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>Thanks&amp;nbsp;Preben Alsholm!
I have tried</title>
      <link>http://www.mapleprimes.com/questions/143388-Float-Problem-For-Integral-Expression?ref=Feed:MaplePrimes:Float problem for Integral expression:Comments#comment143472</link>
      <itunes:summary>&lt;p&gt;Thanks&amp;nbsp;Preben Alsholm!&lt;/p&gt;
&lt;p&gt;I have tried same as you described and found it very helpful, in first part I calculated for certain range, like 0-200000, then&amp;nbsp;as you mentioned&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;&amp;nbsp;More work could be done on this, of course. You could try something like:&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;evalf[15](Int(f,beta=0..10000,method = _d01akc));&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;#and&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;evalf[15](Int(f,beta=0..200000,method = _d01akc,epsilon=1e-10));&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;#for large values of beta f is bounded from above by&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;g:=eval(f,{sin=1,cos=1,tanh=1,coth=1,-38400.=38400});&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;#so you can get an upper bound for the error by computing:&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;evalf[15](Int(g,beta=200000..infinity));&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;from this, I also calculatee for 200000 to infinity range, but can u plz tell&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;to get for the whole range i.e 0-infinity, how could I do this, should I add both ranges value?&lt;/li&gt;
&lt;li&gt;another thing when I changed some input it give some error so&lt;strong&gt; how could I fix it&lt;/strong&gt;? &amp;nbsp;&lt;a href="/view.aspx?sf=143472/453871/To_check.mw"&gt;To_check.mw&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Thanks&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thanks&amp;nbsp;Preben Alsholm!&lt;/p&gt;
&lt;p&gt;I have tried same as you described and found it very helpful, in first part I calculated for certain range, like 0-200000, then&amp;nbsp;as you mentioned&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;&amp;nbsp;More work could be done on this, of course. You could try something like:&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;evalf[15](Int(f,beta=0..10000,method = _d01akc));&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;#and&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;evalf[15](Int(f,beta=0..200000,method = _d01akc,epsilon=1e-10));&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;#for large values of beta f is bounded from above by&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;g:=eval(f,{sin=1,cos=1,tanh=1,coth=1,-38400.=38400});&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;#so you can get an upper bound for the error by computing:&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;evalf[15](Int(g,beta=200000..infinity));&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;from this, I also calculatee for 200000 to infinity range, but can u plz tell&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;to get for the whole range i.e 0-infinity, how could I do this, should I add both ranges value?&lt;/li&gt;
&lt;li&gt;another thing when I changed some input it give some error so&lt;strong&gt; how could I fix it&lt;/strong&gt;? &amp;nbsp;&lt;a href="/view.aspx?sf=143472/453871/To_check.mw"&gt;To_check.mw&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Thanks&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>143472</guid>
      <pubDate>Thu, 14 Feb 2013 13:21:21 Z</pubDate>
      <itunes:author>mtj4u</itunes:author>
      <author>mtj4u</author>
    </item>
  </channel>
</rss>