<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Definite integral</title>
    <link>http://www.mapleprimes.com/questions/136913-Definite-Integral</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 18:17:51 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 18:17:51 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Definite integral</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Definite integral</title>
      <link>http://www.mapleprimes.com/questions/136913-Definite-Integral</link>
    </image>
    <item>
      <title>The reasons</title>
      <link>http://www.mapleprimes.com/questions/136913-Definite-Integral?ref=Feed:MaplePrimes:Definite integral:Comments#answer136923</link>
      <itunes:summary>&lt;p&gt;Indeed, the indefinite integral is computed:&lt;/p&gt;
&lt;pre&gt;&amp;gt; int(x^4/(4*x^5+2), x);
                                          5
                               1/20 ln(2 x  + 1)
&lt;/pre&gt;
&lt;p&gt;and actually, the method &lt;strong&gt;FTOC&lt;/strong&gt; does compute internally the value of the definite integral by taking the limits of this primitive function. But then, the discontinuity checker fails at deciding whether this function is continuous within the integration interval:&lt;/p&gt;
&lt;pre&gt;&amp;gt; kernelopts(opaquemodules=false):
&amp;gt; trace(IntegrationTools:-Definite:-Integrators:-FTOC:-HandleDisconts):
&amp;gt; int(x^4/(4*x^5+2), x=0..1,method=ftoc);
{--&amp;gt; enter HandleDisconts, args = 1/20*ln(2*x^5+1), 1/2*x^4/(2*x^5+1), x, 0, 1
, table([(UnevaluatedIntegral)=UnevaluatedInt(x^4/(4*x^5+2),x = 0 .. 1,method =
ftoc),(AllSolutions)=false,(OriginalParms)=[AllSolutions = false, 
CauchyPrincipalValue = false, continuous = false, method = ftoc],(continuous)=
false,(CPV)=false,(formula)=true,(CauchyPrincipalValue)=false,(mode)=default])
, false
                         5
disconts := {[RootOf(2 _Z  + 1, index = 1), NULL, NULL],
                5
    [RootOf(2 _Z  + 1, index = 2), NULL, NULL],
                5
    [RootOf(2 _Z  + 1, index = 3), NULL, NULL],
                5
    [RootOf(2 _Z  + 1, index = 4), NULL, NULL],
                5
    [RootOf(2 _Z  + 1, index = 5), NULL, NULL]}&lt;br&gt;&amp;lt;-- exit HandleDisconts (now in Apply_Main) = FAIL}&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int(--------, x = 0 .. 1, method = ftoc)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4 x&amp;nbsp; + 2&amp;nbsp;&lt;/pre&gt;
&lt;p&gt;The workaround is disabling this check by setting the option &lt;strong&gt;continuous=true:&lt;/strong&gt;&lt;/p&gt;
&lt;pre&gt;&amp;gt; int(x^4/(4*x^5+2), x=0..1,continuous=true);
                                   1/20 ln(3)
&lt;/pre&gt;
&lt;p&gt;So, the reasons are on the one hand the problem handling the roots of 2*x^5+1 as candidates for discontinuities of the primitive function. And on the other hand, a problem of design. As the discontinuity checker is unable to decide, the integrator hides this weakness by returning unevaluated. But how could a normal user guess this weakness and deal with it? In my opinion, it would be more useful and honest returning the result already computed with a warning message about the failure of the discontinuity checker and the need for checking this result by other means.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Indeed, the indefinite integral is computed:&lt;/p&gt;
&lt;pre&gt;&amp;gt; int(x^4/(4*x^5+2), x);
                                          5
                               1/20 ln(2 x  + 1)
&lt;/pre&gt;
&lt;p&gt;and actually, the method &lt;strong&gt;FTOC&lt;/strong&gt; does compute internally the value of the definite integral by taking the limits of this primitive function. But then, the discontinuity checker fails at deciding whether this function is continuous within the integration interval:&lt;/p&gt;
&lt;pre&gt;&amp;gt; kernelopts(opaquemodules=false):
&amp;gt; trace(IntegrationTools:-Definite:-Integrators:-FTOC:-HandleDisconts):
&amp;gt; int(x^4/(4*x^5+2), x=0..1,method=ftoc);
{--&amp;gt; enter HandleDisconts, args = 1/20*ln(2*x^5+1), 1/2*x^4/(2*x^5+1), x, 0, 1
, table([(UnevaluatedIntegral)=UnevaluatedInt(x^4/(4*x^5+2),x = 0 .. 1,method =
ftoc),(AllSolutions)=false,(OriginalParms)=[AllSolutions = false, 
CauchyPrincipalValue = false, continuous = false, method = ftoc],(continuous)=
false,(CPV)=false,(formula)=true,(CauchyPrincipalValue)=false,(mode)=default])
, false
                         5
disconts := {[RootOf(2 _Z  + 1, index = 1), NULL, NULL],
                5
    [RootOf(2 _Z  + 1, index = 2), NULL, NULL],
                5
    [RootOf(2 _Z  + 1, index = 3), NULL, NULL],
                5
    [RootOf(2 _Z  + 1, index = 4), NULL, NULL],
                5
    [RootOf(2 _Z  + 1, index = 5), NULL, NULL]}&lt;br&gt;&amp;lt;-- exit HandleDisconts (now in Apply_Main) = FAIL}&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int(--------, x = 0 .. 1, method = ftoc)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4 x&amp;nbsp; + 2&amp;nbsp;&lt;/pre&gt;
&lt;p&gt;The workaround is disabling this check by setting the option &lt;strong&gt;continuous=true:&lt;/strong&gt;&lt;/p&gt;
&lt;pre&gt;&amp;gt; int(x^4/(4*x^5+2), x=0..1,continuous=true);
                                   1/20 ln(3)
&lt;/pre&gt;
&lt;p&gt;So, the reasons are on the one hand the problem handling the roots of 2*x^5+1 as candidates for discontinuities of the primitive function. And on the other hand, a problem of design. As the discontinuity checker is unable to decide, the integrator hides this weakness by returning unevaluated. But how could a normal user guess this weakness and deal with it? In my opinion, it would be more useful and honest returning the result already computed with a warning message about the failure of the discontinuity checker and the need for checking this result by other means.&lt;/p&gt;</description>
      <guid>136923</guid>
      <pubDate>Wed, 29 Aug 2012 08:37:06 Z</pubDate>
      <itunes:author>Alejandro Jakubi</itunes:author>
      <author>Alejandro Jakubi</author>
    </item>
    <item>
      <title>N.B. for 'continuous=true'</title>
      <link>http://www.mapleprimes.com/questions/136913-Definite-Integral?ref=Feed:MaplePrimes:Definite integral:Comments#answer136944</link>
      <itunes:summary>&lt;p&gt;Hm ...&lt;br&gt;&lt;br&gt;Using continuous=true is nothing but using the anti-derivative, so it is a kind&lt;br&gt;of 'cheating' and only avoids doing that manually.&lt;br&gt;&lt;br&gt;But actually Maple has the tools to find the discontinuities in that case, even&lt;br&gt;if it does not answer it for 1/20*ln(2*x^5+1):&lt;br&gt;&lt;br&gt;Applying allvalues to RootOf would give it here - which is quite expensive and&lt;br&gt;would not work in general (beyond unit roots, 5 &amp;lt;= degree).&lt;br&gt;&lt;br&gt;But "2*x^5+1; sturm(%,x,0,1);" would answer it quickly and restricting to the&lt;br&gt;case of interest - the intervall from 0 to 1.&lt;br&gt;&lt;br&gt;May it would be worth to implement it for those cases, where the task is just a&lt;br&gt;polynomial problem over a real interval.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Hm ...&lt;br&gt;&lt;br&gt;Using continuous=true is nothing but using the anti-derivative, so it is a kind&lt;br&gt;of 'cheating' and only avoids doing that manually.&lt;br&gt;&lt;br&gt;But actually Maple has the tools to find the discontinuities in that case, even&lt;br&gt;if it does not answer it for 1/20*ln(2*x^5+1):&lt;br&gt;&lt;br&gt;Applying allvalues to RootOf would give it here - which is quite expensive and&lt;br&gt;would not work in general (beyond unit roots, 5 &amp;lt;= degree).&lt;br&gt;&lt;br&gt;But "2*x^5+1; sturm(%,x,0,1);" would answer it quickly and restricting to the&lt;br&gt;case of interest - the intervall from 0 to 1.&lt;br&gt;&lt;br&gt;May it would be worth to implement it for those cases, where the task is just a&lt;br&gt;polynomial problem over a real interval.&lt;/p&gt;</description>
      <guid>136944</guid>
      <pubDate>Wed, 29 Aug 2012 23:25:14 Z</pubDate>
      <itunes:author>Axel Vogt</itunes:author>
      <author>Axel Vogt</author>
    </item>
    <item>
      <title>I uses Derive and got the answer ln(3)/20.&amp;nbsp</title>
      <link>http://www.mapleprimes.com/questions/136913-Definite-Integral?ref=Feed:MaplePrimes:Definite integral:Comments#answer136959</link>
      <itunes:summary>&lt;p&gt;I used Derive and got the answer ln(3)/20. We can put t = x^5.&lt;/p&gt;
&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;I used Derive and got the answer ln(3)/20. We can put t = x^5.&lt;/p&gt;
&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;</description>
      <guid>136959</guid>
      <pubDate>Thu, 30 Aug 2012 18:16:30 Z</pubDate>
      <itunes:author>toandhsp</itunes:author>
      <author>toandhsp</author>
    </item>
    <item>
      <title>Deep thought</title>
      <link>http://www.mapleprimes.com/questions/136913-Definite-Integral?ref=Feed:MaplePrimes:Definite integral:Comments#comment136936</link>
      <itunes:summary>&lt;p&gt;This works in many other cases. For example, compare&lt;/p&gt;
&lt;p&gt;&amp;gt; assume(t, real); int(ln(abs(1-u^2*exp((2*I)*t)))/u^2, u = 0 .. infinity, continuous = true);&lt;br&gt;&lt;img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZoAAAAaCAIAAAABow1YAAADdUlEQVR4nO3dL1P7MBwG8AokEsHLqGx9JaJiYgLZyyEqJyZ6h4iPRSAQvASuNRUVCASiAsFdKxAIxERFRAUiP9G1Tf/tD79wy8bzMRsdTVPu9lzyTXoYAgDgJBiH7gAAgBqIMwA4EYgzADgRKuPMdV3jz1P49wSAvSj7+nHOXddV1RoAwL6UxVkcx8vlUlVresuYXQ3FSHTorgBAQ1mcUUpfXl5UtaazjBGWCSFERAzDrt4CwOEpizPLsjjnqlo7DhmzMUAD0IaaOCvL8urqSklTRyUiiDMAbaiJs+fn5z9TOJM0004A0ICaOFssFkdROOOc39zclGW511mLxeLz83N4PGIIMwCNqIkzx3EmMyJjtjYFc8/z0jTd96yvry/Xdb+/v+WDGbMxzwTQioI4K8tyNpuNfxYRwzA0Wf9L0/T6+npwOGNseywFQfD4+CidY9e3hCEagC4UxNnT0xOldPrziOgRZ77v393d9Q7uOMhKksRxnOr9OqLXtLg1ABBjcZYza/joDgmnmwiC4PX1dfpztXHWbGGVNrE2x6TrSKGz/j3TNOM47nas39KU1Wp1fn6u6h4A4DcM4ixkLBciJBbLRfu6ieM4vbpSl8I4kzZ6tXtYm/YzZtfJJA26msnkxcXF+/t7v72du2YYRlEUSm4DAH5DP87yPBdC5MyyWC5EzqxN4zIhRFEU2x7V3BBnYWfe1jMM0rGWOisNTcZV47XuoMswjI+Pj9659antoK+9QkTkBoanA4BWxmtnIamml/WrJEmS+XzefLHjOB4WpLqUjc5G10g7TxrJvzF4sHKYR+0uWCm52ilo91qIMwDNTcVZPdccxNlqtbq9vfU8r/rR9/2NhTOhcrIZkWGZS5phjj11lDG7zqXBZHO/Pf2YbAJobizOQlLX/kNSTfmqglqtqou/vb0JIWaz2cbCmVBaO4tIdwWARZ3AatNM2n3RzChN00ySpNMYiXbcaIGlAAD9Taxs1nWr9TLnoIBGKXVdt9pfuqn5sXXI/yOtWHZKZt0j0nWbC/u+f39/3+/abt2SN2oAgJ5+uO+sLMvLy8vlcvnw8KC0P78oTdPJ7b7bUErlbbQAoKGfb6OllJ6dnVVTzmPhed62St8Izvl8Pt82pwaAA/t5nBVFYZrmcX3JOeee5+37CHoQBFjTBNAf/lUHAJyIf03tYmga9BkfAAAAAElFTkSuQmCC" alt=""&gt;&lt;br&gt;&amp;gt; simplify(%);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pi |sin(t)|&lt;/p&gt;
&lt;p&gt;with&lt;/p&gt;
&lt;p&gt;&amp;gt; assume(t, real); int(ln(abs(1-u^2*exp((2*I)*t)))/u^2, u = 0 .. infinity);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;This works in many other cases. For example, compare&lt;/p&gt;
&lt;p&gt;&amp;gt; assume(t, real); int(ln(abs(1-u^2*exp((2*I)*t)))/u^2, u = 0 .. infinity, continuous = true);&lt;br&gt;&lt;img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZoAAAAaCAIAAAABow1YAAADdUlEQVR4nO3dL1P7MBwG8AokEsHLqGx9JaJiYgLZyyEqJyZ6h4iPRSAQvASuNRUVCASiAsFdKxAIxERFRAUiP9G1Tf/tD79wy8bzMRsdTVPu9lzyTXoYAgDgJBiH7gAAgBqIMwA4EYgzADgRKuPMdV3jz1P49wSAvSj7+nHOXddV1RoAwL6UxVkcx8vlUlVresuYXQ3FSHTorgBAQ1mcUUpfXl5UtaazjBGWCSFERAzDrt4CwOEpizPLsjjnqlo7DhmzMUAD0IaaOCvL8urqSklTRyUiiDMAbaiJs+fn5z9TOJM0004A0ICaOFssFkdROOOc39zclGW511mLxeLz83N4PGIIMwCNqIkzx3EmMyJjtjYFc8/z0jTd96yvry/Xdb+/v+WDGbMxzwTQioI4K8tyNpuNfxYRwzA0Wf9L0/T6+npwOGNseywFQfD4+CidY9e3hCEagC4UxNnT0xOldPrziOgRZ77v393d9Q7uOMhKksRxnOr9OqLXtLg1ABBjcZYza/joDgmnmwiC4PX1dfpztXHWbGGVNrE2x6TrSKGz/j3TNOM47nas39KU1Wp1fn6u6h4A4DcM4ixkLBciJBbLRfu6ieM4vbpSl8I4kzZ6tXtYm/YzZtfJJA26msnkxcXF+/t7v72du2YYRlEUSm4DAH5DP87yPBdC5MyyWC5EzqxN4zIhRFEU2x7V3BBnYWfe1jMM0rGWOisNTcZV47XuoMswjI+Pj9659antoK+9QkTkBoanA4BWxmtnIamml/WrJEmS+XzefLHjOB4WpLqUjc5G10g7TxrJvzF4sHKYR+0uWCm52ilo91qIMwDNTcVZPdccxNlqtbq9vfU8r/rR9/2NhTOhcrIZkWGZS5phjj11lDG7zqXBZHO/Pf2YbAJobizOQlLX/kNSTfmqglqtqou/vb0JIWaz2cbCmVBaO4tIdwWARZ3AatNM2n3RzChN00ySpNMYiXbcaIGlAAD9Taxs1nWr9TLnoIBGKXVdt9pfuqn5sXXI/yOtWHZKZt0j0nWbC/u+f39/3+/abt2SN2oAgJ5+uO+sLMvLy8vlcvnw8KC0P78oTdPJ7b7bUErlbbQAoKGfb6OllJ6dnVVTzmPhed62St8Izvl8Pt82pwaAA/t5nBVFYZrmcX3JOeee5+37CHoQBFjTBNAf/lUHAJyIf03tYmga9BkfAAAAAElFTkSuQmCC" alt=""&gt;&lt;br&gt;&amp;gt; simplify(%);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pi |sin(t)|&lt;/p&gt;
&lt;p&gt;with&lt;/p&gt;
&lt;p&gt;&amp;gt; assume(t, real); int(ln(abs(1-u^2*exp((2*I)*t)))/u^2, u = 0 .. infinity);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
      <guid>136936</guid>
      <pubDate>Wed, 29 Aug 2012 17:21:28 Z</pubDate>
      <itunes:author>Markiyan Hirnyk</itunes:author>
      <author>Markiyan Hirnyk</author>
    </item>
    <item>
      <title>1) To Alejandro Jakubi. 
Thanks for the</title>
      <link>http://www.mapleprimes.com/questions/136913-Definite-Integral?ref=Feed:MaplePrimes:Definite integral:Comments#comment136945</link>
      <itunes:summary>&lt;p&gt;&lt;span&gt;1) &lt;strong&gt;To Alejandro Jakubi&lt;/strong&gt;. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks for the detailed explanation! It is unfortunate that Maple unable to cope with checking obvious statements.&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Another example:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;is(2*х^5 +1&amp;gt;0) assuming x&amp;gt;=0, x&amp;lt;=1;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; false&lt;/p&gt;
&lt;p&gt;This is just a bug!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2) &lt;strong&gt;To &lt;span&gt;Markiyan Hirnyk&lt;/span&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;I think&lt;/span&gt; &lt;span class="hps"&gt;that the use of&lt;/span&gt;&amp;nbsp;&lt;span class="hps"&gt; &lt;strong&gt;continuous=true &lt;/strong&gt;&lt;span class="hps"&gt;option&lt;/span&gt;&lt;/span&gt;&lt;span&gt;, without&lt;/span&gt; &lt;span class="hps"&gt;proof of the convergence&lt;/span&gt; &lt;span class="hps"&gt;of the improper integral,&lt;/span&gt; &lt;span class="hps"&gt;is unacceptable&lt;/span&gt; &lt;span class="hps"&gt;because&lt;/span&gt; &lt;span class="hps"&gt;may result&lt;/span&gt; &lt;span class="hps"&gt;in an error.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;An example:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;int(1/x, x=-1..2, continuous=true);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -Pi*I+ln(2)&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;Received&lt;/span&gt; &lt;span class="hps"&gt;an incorrect result&lt;/span&gt;&lt;span&gt;!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;span&gt;1) &lt;strong&gt;To Alejandro Jakubi&lt;/strong&gt;. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks for the detailed explanation! It is unfortunate that Maple unable to cope with checking obvious statements.&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Another example:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;is(2*х^5 +1&amp;gt;0) assuming x&amp;gt;=0, x&amp;lt;=1;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; false&lt;/p&gt;
&lt;p&gt;This is just a bug!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2) &lt;strong&gt;To &lt;span&gt;Markiyan Hirnyk&lt;/span&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;I think&lt;/span&gt; &lt;span class="hps"&gt;that the use of&lt;/span&gt;&amp;nbsp;&lt;span class="hps"&gt; &lt;strong&gt;continuous=true &lt;/strong&gt;&lt;span class="hps"&gt;option&lt;/span&gt;&lt;/span&gt;&lt;span&gt;, without&lt;/span&gt; &lt;span class="hps"&gt;proof of the convergence&lt;/span&gt; &lt;span class="hps"&gt;of the improper integral,&lt;/span&gt; &lt;span class="hps"&gt;is unacceptable&lt;/span&gt; &lt;span class="hps"&gt;because&lt;/span&gt; &lt;span class="hps"&gt;may result&lt;/span&gt; &lt;span class="hps"&gt;in an error.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;An example:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;int(1/x, x=-1..2, continuous=true);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -Pi*I+ln(2)&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;Received&lt;/span&gt; &lt;span class="hps"&gt;an incorrect result&lt;/span&gt;&lt;span&gt;!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;</description>
      <guid>136945</guid>
      <pubDate>Thu, 30 Aug 2012 00:15:21 Z</pubDate>
      <itunes:author>Kitonum</itunes:author>
      <author>Kitonum</author>
    </item>
    <item>
      <title>To force an open door</title>
      <link>http://www.mapleprimes.com/questions/136913-Definite-Integral?ref=Feed:MaplePrimes:Definite integral:Comments#comment136948</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/136913-Definite-Integral#comment136945"&gt;@Kitonum&lt;/a&gt; I don't understand why you force an open door.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/136913-Definite-Integral#comment136945"&gt;@Kitonum&lt;/a&gt; I don't understand why you force an open door.&lt;/p&gt;</description>
      <guid>136948</guid>
      <pubDate>Thu, 30 Aug 2012 07:28:44 Z</pubDate>
      <itunes:author>Markiyan Hirnyk</itunes:author>
      <author>Markiyan Hirnyk</author>
    </item>
  </channel>
</rss>