For the input
D[-1/3*Log[Abs[1 + x^(-3)]], x]
the output is
Derivative[1][Abs][1 + 1/x^3]/(x^4*Abs[1 + 1/x^3])
so I put
FullSimplify[D[-1/3*Log[Abs[1 + x^(-3)]], x], Element[x, Reals]]
to tell that Abs only takes real number arguments, but still the output is
Derivative[1][Abs][1 + 1/x^3]/(x^4*Abs[1 + 1/x^3])
What is preventing Mathematica from simplifying the output to
1/(x^4 + x)
and how can I get the expected result?
Simplify[D[-1/3*Log[RealAbs[1 + x^(-3)]], x], x \[Element] Reals]. The complexAbs[x]is not complex-differentiable at anyx. (Alternatively, you can useComplexExpand.) – Michael E2 Jun 25 '23 at 14:57