Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.soft-sys.math.mathematica > #3706 > unrolled thread

Re: simultaneous differential equations

Started byHeike Gramberg <heike.gramberg@gmail.com>
First post2011-07-14 09:23 +0000
Last post2011-07-14 09:23 +0000
Articles 1 — 1 participant

Back to article view | Back to comp.soft-sys.math.mathematica

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: simultaneous differential equations Heike Gramberg <heike.gramberg@gmail.com> - 2011-07-14 09:23 +0000

#3706 — Re: simultaneous differential equations

FromHeike Gramberg <heike.gramberg@gmail.com>
Date2011-07-14 09:23 +0000
SubjectRe: simultaneous differential equations
Message-ID<ivmcit$fap$1@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 

[toc] | [standalone]


Back to top | Article view | comp.soft-sys.math.mathematica


csiph-web