This gives detailed description of all supported differential equations in my ode solver. Whenever possible, each ode type algorithm is described using flow chart.
Each ode type is given an internal code name. This internal name is used by the solver to determine which specific solver to call to solve the ode.
A differential equation is classified as one of the following types.
For first order ode, the following are the main classifications used.
First order ode not linear in \(y'(x)\) (such as d’Alembert, Clairaut). But it is important to note that in this case the ode is nonlinear in \(y'\) when written in the form \(y=g(x,y')\). For an example, lets look at this ode
Now we see that \(g(x,y')\) is nonlinear in \(y'\). The above ode happens to be of type Clairaut.
For second order and higher order ode’s, further classification is
Another classification for second order and higher order ode’s is
Another classification for second order and higher order ode’s is
All of the above can be combined to give this classification
First order ode.
Second and higher order ode
Linear second order ode.
Nonlinear second order ode.
For system of differential equation the following classification is used.
System of first order odes.
System of second order odes.
Currently the program does not support Nonlinear higher order ode. It also does not support nonlinear system of first order odes and does not support system of second order odes.
The following is the top level chart of supported solvers.
This diagram illustrate some of the plots generated for direction field and phase plots.