RE: [sympy] Introduction to community

2019-10-15 Thread Vishesh Mangla
I asked them for laplace transform to solve differential equations in my GSoC proposal but I don’t think it’s required. I additionally said to include residue theorem /Cauchy’s integral formula too. Sent from Mail for Windows 10 From: open jungle Sent: 16 October 2019 03:31 To: sympy Subject:

Re: [sympy] Introduction to community

2019-10-15 Thread Oscar Benjamin
Hi Orestis, It's great that you would like to contribute to SymPy. There is plenty of work to be done on ODEs. For your suggestions I think that possibly the simplest would be implementing a solver for the Legendre equation. I would recommend to start with fixing the simplest thing possible

[sympy] Introduction to community

2019-10-15 Thread open jungle
Hello, My name is Orestis Vaggelis and I'm a sophomore mathematics student on the National and Kapodistrian University of Athens. I have a 1 year of Python experience and I am very excited, that I am able to combine mathematics and programming on an open source project, and (potentially) help

Re: [sympy] Re: How do I get variables sorted?

2019-10-15 Thread Aaron Meurer
On Mon, Oct 14, 2019 at 10:57 AM David Bailey wrote: > > On 14/10/2019 17:17, Chris Smith wrote: > > It a dictionary. You can look at the results in order with > > ans = solve(...) > for k in ordered(ans): >print(k, ans[k]) > > > You could also turn that dict into an ordered list with `ans =