[sage-support] Re: Show intermediate steps for solve(), diff(), integral(), etc...

2011-10-11 Thread Jason Grout
On 10/11/11 10:13 AM, kcrisman wrote: 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 inter

[sage-support] Re: Show intermediate steps for solve(), diff(), integral(), etc...

2011-10-11 Thread kcrisman
> 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 > som