[sympy] Re: Fwd: Taking DiracDelta from SymPy

2009-03-30 Thread Ondrej Certik
Hi Maurizio, I cced sage devel too. On Mon, Mar 30, 2009 at 10:59 PM, Maurizio wrote: > > Hello, > > On 31 Mar, 01:39, Ondrej Certik wrote: >> On Mon, Mar 30, 2009 at 4:14 PM, Maurizio wrote: >> >> > I know some of you guys are related to SAGE development. >> >> > I think it was polite behavi

[sympy] Re: Fwd: Taking DiracDelta from SymPy

2009-03-30 Thread Maurizio
Hello, On 31 Mar, 01:39, Ondrej Certik wrote: > On Mon, Mar 30, 2009 at 4:14 PM, Maurizio wrote: > > > I know some of you guys are related to SAGE development. > > > I think it was polite behavior to forward this post I made in SAGE > > group to your list as well. > > > Thank you very much for

[sympy] Re: Fwd: Taking DiracDelta from SymPy

2009-03-30 Thread Ondrej Certik
On Mon, Mar 30, 2009 at 4:14 PM, Maurizio wrote: > > I know some of you guys are related to SAGE development. > > I think it was polite behavior to forward this post I made in SAGE > group to your list as well. > > Thank you very much for the great work! Thanks for forwarding it. I read the Sage

[sympy] Fwd: Taking DiracDelta from SymPy

2009-03-30 Thread Maurizio
I know some of you guys are related to SAGE development. I think it was polite behavior to forward this post I made in SAGE group to your list as well. Thank you very much for the great work! Regards Maurizio -- Forwarded message -- From: Maurizio Date: 31 Mar, 01:11 Subject

[sympy] Re: Google Summer of Code 2009

2009-03-30 Thread Aaron S. Meurer
On Mar 30, 2009, at 11:54 AM, Ondrej Certik wrote: > > Change: > > http://code.google.com/p/SymPy/issues/detail?id=1336 > > to: > > http://code.google.com/p/sympy/issues/detail?id=1336 Yeah. I was changing all of my sympy's to SymPy and I must have accidently changed the link. > > Also find a

[sympy] Re: GSOC2009 Application: Improve Sympy to handle partial differential equations

2009-03-30 Thread Priit Laes
On Mar 30, 8:55 pm, Ondrej Certik wrote: > On Mon, Mar 30, 2009 at 8:04 AM, Priit Laes wrote: > > > On Mar 30, 4:24 pm, David Joyner wrote: > >> Very interesting. > > > I will try to add these details to my application. > > Yes, ping us when it is updated. > I added it as another section: htt

[sympy] Re: GSOC2009 Application: Improve Sympy to handle partial differential equations

2009-03-30 Thread Ondrej Certik
On Mon, Mar 30, 2009 at 8:04 AM, Priit Laes wrote: > > On Mar 30, 4:24 pm, David Joyner wrote: >> Very interesting. Thanks David for reviewing! > > Thank you :) > >> Could you please add more details for how you intend to implement the >> solvers? >> Will you write them from scratch? Wrap kno

[sympy] Re: Google Summer of Code 2009

2009-03-30 Thread Ondrej Certik
On Fri, Mar 27, 2009 at 6:44 PM, asmeurer wrote: > > OK.  I have finished up the first draft of the application (except for > the abstract, which I will do after I have finalized the main parts). > If you all could look at it, that would be great.  Feel free to > annotate right on it.  It is a wi

[sympy] Re: General stratetegy for deferred evaluation of convolution

2009-03-30 Thread Ondrej Certik
On Mon, Mar 30, 2009 at 7:42 AM, Gael Varoquaux wrote: > > On Sun, Mar 29, 2009 at 07:02:44PM -0700, Ondrej Certik wrote: >> This is partially fixed after my patches from the issue go in sympy: > >> http://code.google.com/p/sympy/issues/detail?id=1352 > >> however now I need more input from you w

[sympy] Re: Poincare-Birkhoff-Witt reduction

2009-03-30 Thread Ondrej Certik
On Mon, Mar 30, 2009 at 7:19 AM, Yau Kwan Kiu wrote: > > On the other hand, I have tried again on the isympy console, > where .subs() works for (e*f*e*f) but not for (e*e*f); > > In [15]: (e*e*f).subs(e*f,f*e+h) > Out[15]: >  2 > e *f > > In [16]: (e*f*e*f).subs(e*f,f*e+h) > Out[16]: >         2

[sympy] Re: sympy 0.6.4.beta3 released

2009-03-30 Thread Ondrej Certik
On Mon, Mar 30, 2009 at 3:44 AM, Neal Becker wrote: > > Fedora F10 x86_64.  Looks like all tests OK: Yes, all tests are fine. Thanks for running it! Ondrej --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "sympy" g

[sympy] Re: second order non-homogeneous ordinary diff eqn

2009-03-30 Thread Aaron S. Meurer
The differential equation solving engine of sympy is very limited right now. You can look in the dsolve function in the solvers file in the source to see what it can solve. It basically can solve linear, Bernoulli, and some special cases of first and second order equations. If I get acc

[sympy] Re: second order non-homogeneous ordinary diff eqn

2009-03-30 Thread comer.dun...@gmail.com
I also meant to say that when one puts sin(t) instead of g(t) in the dsolve, it still does not work. So, it seems clear that this just has not been implemented (yet?). Comer On Mar 30, 11:40 am, "comer.dun...@gmail.com" wrote: > Hi, > > I have a need to have sympy solve the following second ord

[sympy] second order non-homogeneous ordinary diff eqn

2009-03-30 Thread comer.dun...@gmail.com
Hi, I have a need to have sympy solve the following second order differential equation for f(t) using dsolve: dsolve(f(t).diff(t,t) + f(t).diff(t) + mu**2 *f(t) - g(t) , f(t)) where mu is a constant and g(t) is at least twice differentiable. The homogeneous equation is easy enough with dsolve:

[sympy] Re: GSOC2009 Application: Improve Sympy to handle partial differential equations

2009-03-30 Thread Priit Laes
On Mar 30, 4:24 pm, David Joyner wrote: > Very interesting. Thank you :) > Could you please add more details for how you intend to implement the solvers? > Will you write them from scratch? Wrap known solvers? My plan is not to use any external software that would introduce extra dependencies

[sympy] Re: General stratetegy for deferred evaluation of convolution

2009-03-30 Thread Gael Varoquaux
On Sun, Mar 29, 2009 at 07:02:44PM -0700, Ondrej Certik wrote: > This is partially fixed after my patches from the issue go in sympy: > http://code.google.com/p/sympy/issues/detail?id=1352 > however now I need more input from you what exactly you want to do, > see the issue for more details. So

[sympy] Re: Poincare-Birkhoff-Witt reduction

2009-03-30 Thread Yau Kwan Kiu
On the other hand, I have tried again on the isympy console, where .subs() works for (e*f*e*f) but not for (e*e*f); In [15]: (e*e*f).subs(e*f,f*e+h) Out[15]: 2 e *f In [16]: (e*f*e*f).subs(e*f,f*e+h) Out[16]: 2 (h + f*e) Is it true that isympy console uses another piece of code? I ha

[sympy] Re: GSOC2009 Application: Improve Sympy to handle partial differential equations

2009-03-30 Thread David Joyner
Very interesting. Could you please add more details for how you intend to implement the solvers? Will you write them from scratch? Wrap known solvers? I saw no mention of numerical PDE solvers. Are you planning on only implementing symbolic solvers? Can you possibly compare to known symbolic so

[sympy] Re: Poincare-Birkhoff-Witt reduction

2009-03-30 Thread Alan Bromborsky
Yau Kwan Kiu wrote: > Hello. > I want to write a function for reducing an > expression for an element x \in sl2 into a sum in the > Poincare Birkhoff Witt basis , that is, > > e,f,h=symbols('efh',commutative=False) > > e*f |---> f*e+h > > I tried to use subs naively and it wouldn't work: > > >>

[sympy] Re: sympy 0.6.4.beta3 released

2009-03-30 Thread Neal Becker
Fedora F10 x86_64. Looks like all tests OK: ./setup.py test running test = test process starts == executable: /usr/bin/python (2.5.2-final-0) sympy/concrete/tests/test_gosper.py[2] .. [OK] sympy/conc

[sympy] GSOC2009 Application: Improve Sympy to handle partial differential equations

2009-03-30 Thread Priit Laes
Hey, Please take some time to look into my GSOC application: at http://wiki.sympy.org/wiki/GSoC2009Application/PriitLaes I am very happy if you can point out typos, bad wording, things that need a better explanation and of course - please mention things that sound impossible :) Cheers, Priit