You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@testshowDifferentiate(:(x ^ y)) =="(y * x ^ (y - 1)) * der(x) + (x ^ y * log(x)) * der(y)"
52
+
@testshowDifferentiate(:(x ^ y)) =="(y * x ^ (y - 1)) * der(x) + if x isa Real && x <= 0\n Base.oftype(float(x), NaN)\n else\n x ^ y * log(x)\n end * der(y)"
53
+
53
54
# @test showDifferentiate(:(x ^ y ^ z)) == "(y ^ z * x ^ (y ^ z - 1)) * der(x) + (x ^ (y ^ z) * log(x)) * ((z * y ^ (z - 1)) * der(y) + (y ^ z * log(y)) * der(z))"
0 commit comments