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

Edit detail for #207 certain limit failure revision 1 of 3

1 2 3
Editor:
Time: 2007/11/17 22:08:37 GMT-8
Note:

changed:
-
Consider the following two expressions:

\begin{axiom}
exa:=integrate(log(1/x)/x^a,x)
exb:=integrate(log(1/x)*x^b,x)
\end{axiom}
which are equivalent by setting $a=-b$.
However, the operation 'limit' doesn't like both equally well:
\begin{axiom}
limit(exa,x=0)
limit(exb,x=0)
\end{axiom}

Martin

Submitted by : (unknown) at: 2007-11-17T22:08:37-08:00 (16 years ago)
Name :
Axiom Version :
Category : Severity : Status :
Optional subject :  
Optional comment :

Consider the following two expressions:

fricas
exa:=integrate(log(1/x)/x^a,x)

\label{eq1}{{{\left(- a + 1 \right)}\  x \ {\log \left({1 \over x}\right)}}+ x}\over{{\left({{a}^{2}}-{2 \  a}+ 1 \right)}\ {{e}^{-{a \ {\log \left({1 \over x}\right)}}}}}(1)
Type: Union(Expression(Integer),...)
fricas
exb:=integrate(log(1/x)*x^b,x)

\label{eq2}{{\left({{\left(b + 1 \right)}\  x \ {\log \left({1 \over x}\right)}}+ x \right)}\ {{e}^{-{b \ {\log \left({1 \over x}\right)}}}}}\over{{{b}^{2}}+{2 \  b}+ 1}(2)
Type: Union(Expression(Integer),...)

which are equivalent by setting a=-b. However, the operation limit doesn't like both equally well:

fricas
limit(exa,x=0)
>> Error detected within library code: can not determine sign

Martin