1 | initial version |
Typesetting for objects like derivatives, integrals and limits is not yet implemented in Sage, so the icing isn't available. You can however do something manually like this,
show( "f(2)=", f(2) )
show( "f'(x)=", diff(f(x),x) )
show( "∫f(x)dx=", integrate(f(x),x) )
which gives the sort of output you want.
2 | No.2 Revision |
Typesetting for objects like derivatives, integrals and limits is not yet fully implemented in Sage, so the icing isn't available. You can however do something manually like this,
show( "f(2)=", f(2) )
show( "f'(x)=", diff(f(x),x) )
show( "∫f(x)dx=", integrate(f(x),x) )
which gives the sort of output you want.