[sympy] Re: Evaluating Expression

2014-06-30 Thread andy
Gah... I was sure I tried that but I obviously didn't because it works. Thank you! On Sunday, June 29, 2014 10:56:50 PM UTC+1, Chris Smith wrote: If foo is that expression then just solve(foo) will give the answer...solve(foo, rb) in case there are any other symbols. On Sunday, June 29,

[sympy] New to this Organization

2014-06-30 Thread Rachit Jain
Hey, I am a *newbie* to the Open Source and this Organization. I know coding languages like* Python*, and *C++*. In Web Development , I know *HTML, CSS, javscript, jquery, MySQL*. Can you *let me know some easy bug* so that I can start my journey with the aim to contribute my share in the Open

Re: [sympy] New to this Organization

2014-06-30 Thread Saurabh Jha
Hi Rachit, First of all, you need to set up your development environment according to [1]. After that, have a look at easy to fix issues[2]. Solve them to get a familiarity of codebase. If you encounter any difficulties, feel free to post it here in mailing list. Thank you, Saurabh [1]

Re: [sympy] solve(...) and roots(...)

2014-06-30 Thread Vinzent Steinberg
On Friday, June 27, 2014 4:03:27 AM UTC-4, Camille Chambon wrote: Hello Chris, Thanks a lot for your answer! It's very interesting. By now I just need the bisection method: nsolve(eq,c2,(1,1000),solver='bisect'). But I will keep in mind the continuation method for the future. Cheers,