axiom D(0^z,
Type: Expression(Integer)
Produced: >> Error detected within library code: Invalid argument Of course, 0 is expected. patch --kratt6, Thu, 20 Jan 2005 07:29:04 -0600 reply 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) Martin
|