solve system of nonlinear differential equations





Sorry, I should have been clearer.? The functions f1() and f2() are non-linear.? How does the experienced Maxima user go about setting up the *numerical* solution?? I want to graph the solution from t=0 to t=T, where T is some constant number I select.? 




________________________________
 From: Jaime Villate <villate at fe.up.pt>
To: Ether Jones <maxima at etherjones.us> 
Cc: maxima <maxima at math.utexas.edu> 
Sent: Monday, December 10, 2012 4:38 AM
Subject: Re: [Maxima] solve system of nonlinear differential equations
 

On 12/10/2012 05:33 AM, Ether Jones wrote:


>
>diff(x,t,2) = f1(diff(x,t),diff(y,t));
>
>
>diff(y,t,2) = f2(diff(x,t),diff(y,t));
>
>
>
>
>initial conditions at t=0:
>
>
>x:Xo;? y:Yo;? diff(x,t):Vxo;? diff(y,t): Vyo;
>
>
>
>
>Please, What is the most expedient method for solving the above system of differential equations using Maxima?
>
It depends on the particular functions f1 and f2 that you are interested in. I think there is no general method. If f1 and f2 are linear, you might look for an analytic solution, while for other functions you can only find an approximate numerical solution.
Regards,
Jaime