Integrating Lotka-Volterra Equations with Known Parameters

  • Thread starter Thread starter Ry122
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 3K views
Ry122
Messages
563
Reaction score
2
I'm trying to solve these differential equations given the initial conditions 0.5.
http://en.wikipedia.org/wiki/Lotka%E2%80%93Volterra_equation"
α, β, γ and δ are known.

What's the correct method for doing this? I know how to use the Euler method to integrate a single ODE, but not a system of ODEs like this.
 
Last edited by a moderator:
Physics news on Phys.org
Solve them simultaneously: Compute the first increment for x(t) say. You can do this for an IVP since you know the starting values of x(t) and y(t) as well as their derivatives. So you get the next value, [itex]x_1[/itex]. Now, find [itex]y_1[/itex] the same way. Now find [itex](x_2, y_2)[/itex], [itex](x_3,y_3)[/tex] and so on.[/itex]
 
what equation do i sub (x2,y2) and (x3, y3) into to get the final coordinate positions?