I was thinking it would try to resolve the first equation with the constraints given by the 2 others equations. But apparently that doesn't work as I thought.
I also tried with the function:
solve()
But it said it can't resolve the third equation.
Is there a simple way to resolve a set of equations like that?
Aaron Meurer
unread,
May 22, 2014, 7:51:26 PM5/22/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sy...@googlegroups.com
To add initial conditions to dsolve, you need to use the ics
parameter, like dsolve(eq, f(x), ics={f(0):1}). dsolve doesn't
currently integrate with solve to remove the I(t). You'll need to do
that separately, either before or after you run dsolve.