Good day,

A really nice tool this Sage, great work.

I'm looking for a way to show the intermediate steps Sage goes through
when evaluating an expression. To give a very simple example:

   x=var('x')
   solve(x*x+6x+8,x)

evaluates to:

   [x == -2, x == -4]

However I would like the option to see the intermediate steps, thus
something like:

   (x+2)(x+4)=0
   [x == -2, x == -4]

or

   (x+3)^2=1
   [x+3 == +1, x+3 == -1]
   [x == -2, x == -4]

I hope this is possible somehow for most functions like solve(),
diff(), integral(), etc, as this would help me a lot.

Kind regards,
Bas Terwijn

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org

Reply via email to