[sympy] Re: Teaching simplify to do atan (issue 636)

2009-03-23 Thread Ondrej Certik
On Sun, Mar 22, 2009 at 4:39 AM, Vinzent Steinberg wrote: > > On 22 Mrz., 11:39, Vinzent Steinberg > wrote: >> e.find() would be really useful, often you just want to find a term >> and don't care whether it's nested in some other expressions. >> It should be relatively easy to implement. >> > >

[sympy] Re: GSOC2009 idea - equations of mathematical physics

2009-03-23 Thread Ondrej Certik
Hi Priit! On Sun, Mar 22, 2009 at 1:24 PM, Priit Laes wrote: > > Hey, > > Well, this is another application from someone interested in having > partial differential equations (PDE) support in Sympy :) Yes, I fully support it. :) > > As you all might already know - solving PDEs is not easy and

[sympy] Re: pprinting for partial differentials?

2009-03-23 Thread Ondrej Certik
On Mon, Mar 23, 2009 at 12:26 PM, comer.dun...@gmail.com wrote: > > Most of the time I am dealing with PDEs and as such think it would be > cool if sympy can do the right thing when pprinting an expression > involving partial derivatives. Currently it's my understanding that > only the 'd' gets r

[sympy] Re: Getting a series expansion hangs Sympy

2009-03-23 Thread Ondrej Certik
On Mon, Mar 23, 2009 at 6:28 PM, Andrew wrote: > > Hi Ondrej, > > I burrowed into the source code and the problem seems to be caused by > the pattern matching > in the `sympy/core/power.py` file. It expects a term of the form > k*x**l, but if there > are two terms of the same power in x it won't

[sympy] Re: Google Summer of Code 2009

2009-03-23 Thread Ondrej Certik
On Mon, Mar 23, 2009 at 6:42 PM, asmeurer wrote: > > On Mar 22, 1:00 pm, Ondrej Certik wrote >> Python does, but we have a word in it. It's a good idea to introduce >> yourself in the python-gsoc list. > I went ahead and introduced myself there. > > I copied what I have above and added some note

[sympy] Curvilinear coordinates demo

2009-03-23 Thread Ondrej Certik
Hi, I implemented coordinate transformations with sympy, patches are here, please review: http://groups.google.com/group/sympy-patches/browse_thread/thread/e0f5ceb33828d31c or download from my git repo, branch curvi: http://github.com/certik/sympy I implemented it as an example, here is how t

[sympy] Re: Google Summer of Code 2009

2009-03-23 Thread asmeurer
On Mar 22, 1:00 pm, Ondrej Certik wrote > Python does, but we have a word in it. It's a good idea to introduce > yourself in the python-gsoc list. I went ahead and introduced myself there. I copied what I have above and added some notes to myself on the wiki at http://wiki.sympy.org/wiki/GSoC200

[sympy] Re: Getting a series expansion hangs Sympy

2009-03-23 Thread Andrew
Hi Ondrej, I burrowed into the source code and the problem seems to be caused by the pattern matching in the `sympy/core/power.py` file. It expects a term of the form k*x**l, but if there are two terms of the same power in x it won't match. This gives l=0 and the following while loop doesn't term

[sympy] Re: pprinting for partial differentials?

2009-03-23 Thread comer.dun...@gmail.com
Another thought: Make a new diff function and call it pdiff. The only difference between diff and pdiff would be that pdiff always returns \partial for 'd'. Not certain that this suggestion is much different than the above...developers will know, I'm sure. Comer On Mar 23, 3:26 pm, "comer.dun

[sympy] pprinting for partial differentials?

2009-03-23 Thread comer.dun...@gmail.com
Most of the time I am dealing with PDEs and as such think it would be cool if sympy can do the right thing when pprinting an expression involving partial derivatives. Currently it's my understanding that only the 'd' gets rendered rather than \partial. So my question is whether sympy can be educa