Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.soft-sys.math.mathematica > #3706
| From | Heike Gramberg <heike.gramberg@gmail.com> |
|---|---|
| Newsgroups | comp.soft-sys.math.mathematica |
| Subject | Re: simultaneous differential equations |
| Date | 2011-07-14 09:23 +0000 |
| Organization | Steven M. Christensen and Associates, Inc and MathTensor, Inc. |
| Message-ID | <ivmcit$fap$1@smc.vnet.net> (permalink) |
| References | <201107130710.DAA02332@smc.vnet.net> |
Here's a very basic example: solving two coupled linear ODEs
Clear[x, y];
dsol = DSolve[{x'[t] == -x[t] + 4 y[t], y'[t] == -x[t] - y[t],
x[0] == 1, y[0] == 1}, {x, y}, t];
{xf, yf} = {x, y} /. dsol[[1]]
ParametricPlot[{xf[t], yf[t]}, {t, 0, 5}]
Heike
On 13 Jul 2011, at 08:10, J and B wrote:
> I hope it is ok to ask this general question. I am looking for examples of
> how to solve simultaneous differential equations using Mathematica. I would
> prefer examples that do not use manipulations as shown in the demonstration
> projects.
>
> Thanks
Back to comp.soft-sys.math.mathematica | Previous | Next | Find similar | Unroll thread
Re: simultaneous differential equations Heike Gramberg <heike.gramberg@gmail.com> - 2011-07-14 09:23 +0000
csiph-web