|
|
last edited 9 years ago by Bill Page |
1 2 3 | ||
Editor: Bill Page
Time: 2015/01/30 18:19:18 GMT+0 |
||
Note: |
changed: -abs is often defined in terms of the positive square root so comparison with the following is perhaps a surprize. abs is often defined in terms of the positive square root changed: -differentiate(sqrt(x^2),x) Abs(x)==sqrt(x^2) added: so comparison with the following is perhaps a surprize. \begin{axiom} differentiate(Abs(x),x) \end{axiom}
This is how FriCAS? currently differentiates the absolute value function.
differentiate(abs(x),x)
(1) |
abs is often defined in terms of the positive square root
Abs(x)==sqrt(x^2)
so comparison with the following is perhaps a surprize.
differentiate(Abs(x),x)
Compiling function Abs with type Variable(x) -> Expression(Integer)
(2) |
Are these expressions really equivalent?