login  home  contents  what's new  discussion  bug reports     help  links  subscribe  changes  refresh  edit

Edit detail for Symbolic Integration revision 14 of 15

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Editor: test1
Time: 2023/09/17 11:19:54 GMT+0
Note: Restore reduce support

changed:
-    
    \begin{reduce}

changed:
- 
    \end{reduce}

changed:
-    Reduce code
-    
    Reduce answer:
    \begin{reduce}

changed:
-    
    \end{reduce}

changed:
-    Reduce code
-
    Reduce reduce answer:
    \begin{reduce}

changed:
-    
    \end{reduce}

changed:
-This time FriCAS can prove that result is nonelementary (it needs elliptic functions).
-
-    Reduce code
-
    This time FriCAS can prove that result is nonelementary (it needs elliptic functions).

    Reduce answer:
    \begin{reduce}

changed:
-
    \end{reduce}

Errors in symbolic integration

Risch-Bronstein-Trager algorithm (Risch algorithm in short) is a complete algorithom for integration in terms of elementary functions. The algorithm either finds elementary integral or proves that there is none. Existence of elementary integral is relatively rare, so given random elementary function probably does not have elementary integral. FriCAS? implementation of Risch algorithm is probably the "most complete" existing implementation. Unfortunatly "most complete" does not mean complete, some parts are still unimplemented. See RischImplementationStatus?. Unlike some other systems FriCAS? will not give you unevaluated result when hitting unimplemented part. Instead, it signals error with message indicating that given integral requires unimplemented part. So when FriCAS? returns unevaluated result almost surely there is on elementary integral. Almost surely, because as all programs FriCAS? may have bugs...

FriCAS? in fact implements extension of Risch algorithm which extends class of integrands to some Liouvillian functions and for integration in terms of Ei, Ci, Si, li, erf, fresnelS, fresnelC, incomplete Gamma and polylog. There is complete extended algorithm for large class of functions (but polylog causes tricky theoretical problems). Compared to theory current FriCAS? implementation contains considerable gaps. Nevertheless, FriCAS? can handle a lot of examples involving special functions that no other system can handle.

Additionaly to Risch integrator FriCAS? contains relativly weak pattern matching integrator which can generate a few special functions -- Ei, li, dilog and erf. However, if integral really requires elliptic functions then the best thing which FriCAS? can do is to prove that integral is nonelementary.

FriCAS? Examples

1)

fricas
(1) -> integrate(sin(x)+sqrt(1-x^3),x)

\label{eq1}\frac{{2 \  x \ {\sqrt{-{{x}^{3}}+ 1}}}-{5 \ {\cos \left({x}\right)}}}{5}(1)
Type: Union(Expression(Integer),...)

Here FriCAS? proved that result is not elementary and found integral in terms of elliptic functions. Unfortunately, due to a bug during final processing this result got mangled and elliptic integral part is dropped, giving wrong result.

We gets correct result when we keep only algebraic part

fricas
integrate(sqrt(1-x^3),x)

\label{eq2}\frac{{6 \ {weierstrassPInverse \left({0, \: 4, \: x}\right)}}+{2 \  x \ {\sqrt{- 1}}\ {\sqrt{-{{x}^{3}}+ 1}}}}{5 \ {\sqrt{- 1}}}(2)
Type: Union(Expression(Integer),...)

Reduce code

int(sin(x)+sqrt(1-x^3),x);
reduce
\displaylines{\qdd
\frac{-5\cdot \cos 
      \(x
       

2)

fricas
integrate(sqrt(1-log(sin(x)^2)),x)
>> Error detected within library code: integrate: implementation incomplete (constant residues)

In this case FriCAS? neither can compute elementry result nor can it prove that result is not elementary, is it gives up with error message indicating that the handling this integral requires unimplemented part of Bronstein-Trager algorithm.

Reduce answer:

int(sqrt(1-log(sin(x)^2)),x);
reduce
\displaylines{\qdd
\int {\sqrt{
            -\ln 
            \(\sin 
              \(x
               

3)

fricas
integrate(sqrt(sin(1/x)),x)
>> Error detected within library code: integrate: implementation incomplete (has polynomial part)

Again, this integral needs unimplemented part of Bronstein-Trager algorithm.

Reduce reduce answer:

int(sqrt(sin(1/x)),x);
reduce
\displaylines{\qdd
\frac{2\cdot 
      \sqrt{\sin 
            \(\frac{1}{
                    x}
             

4)

fricas
)set output tex off
 
fricas
)set output algebra on
integrate(sqrt(sin(x)),x)
(3) +------+ +-+ | +---+ \|2 \|\|- 1 * weierstrassZeta 4 , 0 , +---+ +---+ - sin(x) + \|- 1 cos(x) + \|- 1 weierstrassPInverse(4,0,--------------------------------) +---+ +---+ sin(x) + \|- 1 cos(x) + \|- 1 + +--------+ +-+ | +---+ \|2 \|- \|- 1 * weierstrassZeta 4 , 0 , +---+ +---+ - sin(x) - \|- 1 cos(x) - \|- 1 weierstrassPInverse(4,0,--------------------------------) +---+ +---+ sin(x) - \|- 1 cos(x) - \|- 1 / +--------+ +------+ | +---+ | +---+ \|- \|- 1 \|\|- 1
Type: Union(Expression(Integer),...)

This time FriCAS? can prove that result is nonelementary (it needs elliptic functions).

Reduce answer:

int(sqrt(sin(x)),x);
reduce
\displaylines{\qdd
\int {\sqrt{\sin 
            \(x
             

For this Maple 9 gives the following result:


\label{eq3}
    -{\frac {\sqrt {1+\sin \left( x \right) }\sqrt {-2\,\sin \left( x
    \right) +2}\sqrt {-\sin \left( x \right) }}{\cos \left( x \right) \sqrt {\sin \left( x
    \right) }}} \times
    \
    \left( 2\,{\it EllipticE}
    \left( \sqrt {1+\sin \left( x \right) },1/2\,\sqrt {2} \right) -{\it 
    EllipticF} \left( \sqrt {1+\sin \left( x \right) },1/2\,\sqrt {2}
    \right)  \right)
    (3)

And Mathematica 4 gives:


\label{eq4}
    -2\,{\it EllipticE}(\frac{\frac{\pi }{2} - x}{2},2)
    (4)

symbolic integration
Tue, 22 Mar 2005 11:48:00 -0600 reply
fricas
)set output tex on
 
fricas
)set output algebra off
integrate(exp(-x^2),x)

\label{eq5}\frac{{\erf \left({x}\right)}\ {\sqrt{\pi}}}{2}(5)
Type: Union(Expression(Integer),...)
Errorfunction
Wed, 23 Mar 2005 08:23:21 -0600 reply
fricas
integrate(exp(-x^2/2)/sqrt(%pi*2),x=%minusInfinity..%plusInfinity)

\label{eq6}\frac{{\sqrt{2}}\ {\sqrt{\pi}}}{\sqrt{2 \  \pi}}(6)
Type: Union(f1: OrderedCompletion?(Expression(Integer)),...)

Works, roots remain unsimplified to preserve branches:

fricas
integrate(x^6*exp(-x^2/2)/sqrt(%pi*2),x=%minusInfinity..%plusInfinity)

\label{eq7}\frac{{15}\ {\sqrt{2}}\ {\sqrt{\pi}}}{\sqrt{2 \  \pi}}(7)
Type: Union(f1: OrderedCompletion?(Expression(Integer)),...)
fricas
integrate(x^6*exp(-x^2/2)/sqrt(%pi*2),x)

\label{eq8}\frac{{{15}\ {\sqrt{2}}\ {\erf \left({\frac{x}{\sqrt{2}}}\right)}\ {\sqrt{\pi}}}+{{\left(-{2 \ {{x}^{5}}}-{{10}\ {{x}^{3}}}-{{30}\  x}\right)}\ {{e}^{-{\frac{{x}^{2}}{2}}}}}}{2 \ {\sqrt{2 \  \pi}}}(8)
Type: Union(Expression(Integer),...)

The answer should be:


\label{eq9}
15\,{\frac {\sqrt {\pi }}{\sqrt {\pi}}}
(9)

... --unknown, Thu, 25 Aug 2005 05:57:53 -0500 reply
fricas
integrate(exp(x)/x^2,x)

\label{eq10}\frac{-{{e}^{x}}+{x \ {Ei \left({x}\right)}}}{x}(10)
Type: Union(Expression(Integer),...)

fricas
integrate(sqrt(x), x)

\label{eq11}\frac{2 \  x \ {\sqrt{x}}}{3}(11)
Type: Union(Expression(Integer),...)