Ask Your Question

nguyenthanhvuh's profile - activity

2019-03-12 00:44:36 +0200 received badge  Scholar (source)
2019-03-04 05:23:59 +0200 commented answer What software does Sage use to solve linear equations ?

Thanks, I'll look at Maxima

2019-03-04 05:23:44 +0200 received badge  Supporter (source)
2019-03-03 22:56:24 +0200 received badge  Editor (source)
2019-03-03 22:50:46 +0200 asked a question What software does Sage use to solve linear equations ?

Hi, I have been using Sage in my project mainly to solve a large list of large (hundred of unknowns) linear equations, i.e., solve(eqts, variable). However, Sage is so large that it becomes inconvenient to ask users to download Sage to use my work. I've tried to use sympybut its equation solver is much slower compare to the one in Sage. So I am wondering what software that Sage uses underneath for linear equation solving ? It's probably one of those listed here http://www.sagemath.org/links-compone... but I don't know which.

Note that I want a solver that can give symbolic solution, e.g., instead of solutions such as x = 3, y =6, it would say x = v1, y = 2*v1. This is how I use solve in Sage.

2019-03-03 22:42:03 +0200 received badge  Notable Question (source)
2019-03-03 22:42:03 +0200 received badge  Popular Question (source)
2016-01-04 15:00:45 +0200 received badge  Nice Question (source)
2016-01-02 16:36:21 +0200 received badge  Student (source)
2016-01-01 17:22:20 +0200 asked a question Equivalence to Python -O flag ?

Hi, is there in Sage that's equivalent to running python with the flag -O, i.e., python -O ? This sets the __debug__ variable to 1 and remove all assertion code. I've tried sage -O and also look at sage -h but can't seem to find something like that.
Thanks,