Ask Your Question

Yorgos's profile - activity

2023-03-28 12:39:12 +0100 received badge  Famous Question (source)
2020-04-29 18:43:00 +0100 received badge  Notable Question (source)
2017-03-16 00:32:38 +0100 received badge  Popular Question (source)
2015-11-26 14:44:57 +0100 received badge  Student (source)
2015-11-22 23:50:49 +0100 asked a question present sage output as "normal" mathematics

Hello,

I am new to sage and I have the following question. Here is a minimal working example:

x,y=var('x,y')
f=x^2-3*y; f
f.diff(x)
g=f.diff(x);g

The output of it is 2*x, but I wonder if there is a way to say to sage that I want to present the output g=2x.

Thanks in advance