On 03/04/15 23:40, G B wrote:
I'm having trouble getting dsolve to work with a system of equations.  If
possible I'd like to find a work around so I can continue the work I'm
doing...

I'm using IPython 3.4.  Here's a simple test case:

from sympy import *
t,c,d=symbols(r't,c,d')
A,B=symbols(r'A,B',cls=Function)
Eq1=Eq(A(t).diff(t),B(t)-B(t).diff(t)+c)
Eq2=Eq(A(t),B(t).diff(t)+A(t).diff(t)+d)

Maybe just file an issue?  dsolve for systems is a real mess, see e.g.,

https://github.com/sympy/sympy/pull/9235

I'm also not sure that form is supported. You could rework it by hand isolate `A(t).diff(t)` and `B(t).diff(t)` as the two left-hand sides and try again...

Colin

--
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/551FB748.5060500%40maths.ox.ac.uk.
For more options, visit https://groups.google.com/d/optout.

Reply via email to