Differential Equations

Differential Equations

Linear Systems of Differential Equations

Approximating Solutions

  • Euler's Method. eulers_method implements Euler’s method for finding a numerical solution of the first-order ODE $y′=f(x,y)$.
  • Euler's Method for Systems. eulers_method_2x2 implements Euler’s method for finding a numerical solution of a $2 \times 2$ system of first-order ODEs.
  • desolve_odeint. Solving ordinary differential equations numerically with desolve_odeint.
  • desolve_rk4. Numerically solving a first order differential equation with the desolve_rk4 command.
  • desolve_system_rk4 Numerically solving a system of 2 differential equations with the desolve_system_rk4 command.
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License