Also called
-Calculus
Refs.
fricas
)lib FSPECX
FunctionalSpecialFunction is now explicitly exposed in frame initial
FunctionalSpecialFunction will be automatically loaded when needed
from /var/aw/var/LatexWiki/FSPECX.NRLIB/FSPECX
abs2sqrt := rule abs(a+%i*b)==sqrt(a^2+b^2)
Type: RewriteRule
?(Integer,
Complex(Integer),
Expression(Complex(Integer)))
fricas
diff(ex,z) == eval(D(eval(ex,z=%conjugate),%conjugate),%conjugate=z)
Type: Void
fricas
test(diff(z,z)=1)
fricas
Compiling function diff with type (Variable(z),Variable(z)) ->
Polynomial(Integer)
Type: Boolean
fricas
test(diff(conjugate z,conjugate z)=1)
fricas
Compiling function diff with type (Expression(Integer),Expression(
Integer)) -> Expression(Integer)
Type: Boolean
fricas
test(diff(z,conjugate z)=0)
fricas
Compiling function diff with type (Variable(z),Expression(Integer))
-> Expression(Integer)
Type: Boolean
fricas
test(diff(conjugate z,z)=0)
fricas
Compiling function diff with type (Expression(Integer),Variable(z))
-> Expression(Integer)
Type: Boolean
fricas
diff(sin(x),x)
fricas
Compiling function diff with type (Expression(Integer),Variable(x))
-> Expression(Integer)
Type: Expression(Integer)
fricas
diff(sin(x),conjugate x)
Type: Expression(Integer)
fricas
diff(sqrt(x^2),x)
Type: Expression(Integer)
fricas
diff(sqrt(x^2),conjugate x)
Type: Expression(Integer)
fricas
diff(z*conjugate(z),z)
Type: Expression(Integer)
fricas
diff(z*conjugate(z),conjugate z)
Type: Expression(Integer)
fricas
diff(sqrt(x*conjugate(x)),x)
Type: Expression(Integer)
fricas
diff(diff(sqrt(x*conjugate(x)),x),x)
Type: Expression(Integer)
fricas
diff(diff(sqrt(x*conjugate(x)),x),conjugate x)
Type: Expression(Integer)
fricas
diff(sqrt(x*conjugate(x)),conjugate x)
Type: Expression(Integer)
Non-holomorphic functions
fricas
real(x) == (x+conjugate(x))/2
Type: Void
fricas
imag(x) == (x-conjugate(x))/2
Type: Void
fricas
diff(real(x),x)
fricas
Compiling function real with type Variable(x) -> Expression(Integer)
Type: Expression(Integer)
fricas
diff(real(x),conjugate x)
Type: Expression(Integer)
fricas
diff(imag(x),x)
fricas
Compiling function imag with type Variable(x) -> Expression(Integer)
Type: Expression(Integer)
fricas
diff(imag(x),conjugate x)
Type: Expression(Integer)
fricas
diff(abs(x)^2,x)
Type: Expression(Integer)
Functions are assumed holomorphic
fricas
f:=operator 'f
fricas
diff(f(x),conjugate x)
Type: Expression(Integer)
fricas
diff(f(x,conjugate x),x)
Type: Expression(Integer)
fricas
diff(f(x,conjugate x),conjugate x)
Type: Expression(Integer)
fricas
test(diff(conjugate f(z,conjugate z),conjugate z) = conjugate diff(f(z,conjugate z),z))
Type: Boolean
fricas
test(diff(conjugate f(z,conjugate z),z) = conjugate diff(f(z,conjugate z),conjugate z))
Type: Boolean