On Wed, Oct 31, 2018 at 9:11 AM Francesco <francesco.manzin...@gmail.com> wrote:
>
> Hello; I  have installed sage 8.4 and I have problem with the derivatives ...
> I have defined a function in sage of this type:
>
> x=var('x')
> def funz(x):
>    if x >= 0:
>       return x^2
>    else:
>       return x^3
>
> but, when I try to calculate
>
> diff(funz(x),x)
>
> I obtain only
>
>  3x^2
>
> and this is wrong !! Can you help me ?

Python functions are not mathematical functions, you cannot do
calculus on them---as opposed to f as below:

sage: f(x)=x^2
sage: f
x |--> x^2
sage: diff(f,x)
x |--> 2*x

I am not sure how to deal with piecewise-defined functions as yours,
in Sage, but I might be missing something.

>
> --
> You received this message because you are subscribed to the Google Groups 
> "sage-support" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to sage-support+unsubscr...@googlegroups.com.
> To post to this group, send email to sage-support@googlegroups.com.
> Visit this group at https://groups.google.com/group/sage-support.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/d/optout.

Reply via email to