Skip to content

Commit e6585df

Browse files
Release Managervbraun
Release Manager
authored andcommitted
Trac #22209: Differentiation of conj/imag/real/abs functions
At the moment the result from differentiation of the functions `conj`, `real`, `imag`, `abs` does not take the argument domain into account. {{{ sage: _ = var('x', domain='real') sage: _ = var('z') sage: (x^z).conjugate().diff(x) x^(z - 1)*z*D[0](conjugate)(x^z) sage: atan(x).imag_part().diff(x) D[0](imag_part)(arctan(x))/(x^2 + 1) sage: abs(log(z)).diff(z) log(z)/(z*abs(log(z))) }}} GiNaC has functionality that is only now included in Pynac. The ticket should doctest it when it is implemented. It all benefits from recent domain logic improvements in Pynac as well. pynac/pynac#45 URL: https://trac.sagemath.org/22209 Reported by: rws Ticket author(s): Ralf Stephan Reviewer(s): Travis Scrimshaw
2 parents 51f8023 + 052e3cb commit e6585df

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

src/sage/calculus/wester.py

+2
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,8 @@
509509
sage: # Verify(D(x) Abs(x), Sign(x));
510510
sage: diff(abs(x))
511511
1/2*(x + conjugate(x))/abs(x)
512+
sage: _.simplify_full()
513+
x/abs(x)
512514
sage: _ = var('x', domain='real')
513515
sage: diff(abs(x))
514516
x/abs(x)

src/sage/symbolic/expression.pyx

+22-1
Original file line numberDiff line numberDiff line change
@@ -3822,7 +3822,28 @@ cdef class Expression(CommutativeRingElement):
38223822
sage: f.derivative(2)
38233823
x |--> 6*x - sin(x)
38243824
3825-
::
3825+
Some expressions can't be cleanly differentiated by the
3826+
chain rule::
3827+
3828+
sage: _ = var('x', domain='real')
3829+
sage: _ = var('w z')
3830+
sage: (x^z).conjugate().diff(x)
3831+
conjugate(x^(z - 1))*conjugate(z)
3832+
sage: (w^z).conjugate().diff(w)
3833+
w^(z - 1)*z*D[0](conjugate)(w^z)
3834+
sage: atanh(x).real_part().diff(x)
3835+
-1/(x^2 - 1)
3836+
sage: atanh(x).imag_part().diff(x)
3837+
0
3838+
sage: atanh(w).real_part().diff(w)
3839+
-D[0](real_part)(arctanh(w))/(w^2 - 1)
3840+
sage: atanh(w).imag_part().diff(w)
3841+
-D[0](imag_part)(arctanh(w))/(w^2 - 1)
3842+
sage: abs(log(x)).diff(x)
3843+
1/2*(conjugate(log(x))/x + log(x)/x)/abs(log(x))
3844+
sage: abs(log(z)).diff(z)
3845+
1/2*(conjugate(log(z))/z + log(z)/conjugate(z))/abs(log(z))
3846+
sage: forget()
38263847
38273848
sage: t = sin(x+y^2)*tan(x*y)
38283849
sage: t.derivative(x)

0 commit comments

Comments
 (0)