On 6 Aug., 19:57, Jurgis Pralgauskis <[email protected]> wrote: > hello, > > I wonder if there is some easy way > to trace what mathematically meaningful steps are made > while solving some problem in sympy. > > like in linear equations system: > - row-reduce an augmented matrix > - show how each unknown is computed > > ?
The most easy way is to patch sympy's source code to print some lines indicating what it's doing. This is hackish, if someone is interested he could implement a more versatile framework for doing this. Some functions can be more verbose if you tell them too (numerical rootfinding and limits for instance). However, CAS in general often use algorithms which are not intuitive to humans (for example for integration), I think there are special CAS for this. Mathomatic [1] is for example more verbose than sympy. Vinzent [1] http://mathomatic.org/math/ Vinzent --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sympy?hl=en -~----------~----~----~----~------~----~------~--~---
