[sympy] Re: Contribution

2017-10-10 Thread Shekhar Prasad Rajak
Hello Rushikesh, You must follow : https://github.com/sympy/sympy/wiki/Introduction-to-contributing and can ask questions in gitter channel as well : https://gitter.im/sympy/sympy Cheers, Shekhar On Sunday, 8 October 2017 09:5

[sympy] Adding feature of Sylvester Matrix in Sympy

2017-10-10 Thread Biswesh Mohapatra
I have been using Sympy in for the past few weeks and want to contribute to it. I noticed that Sympy doesn't have a feature to form a sylvester matrix for 2 given univariate polynomials. Correct me if i am wrong. I would like to add this feature due to its importance in commutative algebra. Can

Re: [sympy] Adding feature of Sylvester Matrix in Sympy

2017-10-10 Thread Aaron Meurer
There is a function for this in https://github.com/sympy/sympy/blob/9670ff89dd8bff7878c6d636ec4f493b87d092df/sympy/polys/subresultants_qq_zz.py. However, it should perhaps be exposed in __init__.py. Aaron Meurer On Tue, Oct 10, 2017 at 3:12 PM Biswesh Mohapatra wrote: > I have been using Sympy

[sympy] Multiple Equations with solveset

2017-10-10 Thread Bobby Rullo
Hi there, Given a number of equations, I can give them to solve to get the solution set, eg: solutions = solve([eq1, eq2, eq3]) However, solve seems to be deprecated in favor of solveset, but solveset only takes a single equation: solutions = solveset([eq1, eq2, eq3]) ValueError: [Eq(x, 1),