axiom-developer
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Axiom-developer] [#19 D(0^z, z) fails] patch


From: root
Subject: Re: [Axiom-developer] [#19 D(0^z, z) fails] patch
Date: Thu, 20 Jan 2005 12:16:22 -0500

> The offending code is in combfunc.spad, here is a patch. Note however, that 
> strictly speaking 0^z is not differentiable at 0...
> 
> @@ -405,7 +417,10 @@
>        iipow l == ipow l
> 
>      if F has ElementaryFunctionCategory then
> -      dvpow2 l == log(first l) * first(l) ** second(l)
> +      dvpow2 l == if zero?(first l) then
> +                    0
> +                  else
> +                    log(first l) * first(l) ** second(l)
> 
>      evaluate(opfact, iifact)$BasicOperatorFunctions1(F)
>      evaluate(oppow, iipow)
 
Patch applied.
This will be fixed in the Feb release.

Tim





reply via email to

[Prev in Thread] Current Thread [Next in Thread]