Open Educational Resources

Ordinary Differential Equations: Classification of ODEs

Classification of ODEs

Order

The order of an ODE is the order of the highest derivative appearing in the equation. For example, the following equation (Newton’s equation) is a second-order ODE:

    \[m \frac{\mathrm{d}^2x}{\mathrm{d}t^2}=mg-kx\]

while the beam equation is a fourth-order ODE:

    \[EI\frac{\mathrm{d}^4y}{\mathrm{d}x^4}=q\]

Linear vs. Nonlinear

An ODE is linear if it can be written as the linear combination:

    \[\frac{\mathrm{d}^ny}{\mathrm{d}x^n}+\sum_{i=0}^{n-1} a_i(x)\frac{\mathrm{d}^iy}{\mathrm{d}x^i}=f(x)\]

where a_i(x) and f(x) are functions of the independent variable x. All the examples above are considered linear ODEs.
The following are two examples of nonlinear ODEs with x being the dependent variable and t being the independent variable:

    \[\begin{split}\frac{\mathrm{d}x}{\mathrm{d}t}&=\frac{k}{x}\\\frac{\mathrm{d}^2x}{\mathrm{d}t^2}&=\sin{x}\end{split}\]

Homogeneous vs. Nonhomogeneous

A homogeneous ODE is an equation whose every term contains either the dependent variable or one of its derivatives. For example, Newton’s second law applied to a spring without the gravitational term is a linear homogeneous ODE:

    \[m \frac{\mathrm{d}^2x}{\mathrm{d}t^2}=-kx\]

If one of the non-zero terms in the ODE contains neither the dependent variable nor any of its derivatives, the equation is nonhomogeneous. As an example, if the gravitational term is added to Newton’s second law, then, the equation becomes nonhomogeneous:

    \[m \frac{\mathrm{d}^2x}{\mathrm{d}t^2}=mg-kx\]

The free term (the term devoid of the dependent variables and any of its derivatives) is called the source term.

 

A linear homogeneous ODE has the following form:

    \[\frac{\mathrm{d}^ny}{\mathrm{d}x^n}+\sum_{i=0}^{n-1} a_i(x)\frac{\mathrm{d}^iy}{\mathrm{d}x^i}=0\]

while a linear nonhomogeneous ODE has the form:

    \[\frac{\mathrm{d}^ny}{\mathrm{d}x^n}+\sum_{i=0}^{n-1} a_i(x)\frac{\mathrm{d}^iy}{\mathrm{d}x^i}=f(x)\]

The term f(x) is called the source term. The solution to a linear homogeneous equation is called the complementary solution y_c while the solution when a source term appears in the equation is the sum of the complementary solution y_c and the particular solution y_p (which is particular to the source term f(x)). For example, the solution to Newton’s second law without the gravitational term has the form:

    \[x=C_1\cos\left(\frac{\sqrt{k}t}{\sqrt{m}}\right)+C_2\sin\left(\frac{\sqrt{k}t}{\sqrt{m}}\right)\]

while the solution when the gravitational term appears has the form:

    \[x=\frac{mg}{k}+C_1\cos\left(\frac{\sqrt{k}t}{\sqrt{m}}\right)+C_2\sin\left(\frac{\sqrt{k}t}{\sqrt{m}}\right)\]


The particular solution is the term \frac{mg}{k}.

IVP vs. BVP

Depending on the boundary conditions, an ODE can be classified as either an Initial Value Problem (IVP) or a Boundary Value Problem (BVP). An initial value problem is an ODE given with initial conditions of the dependent variable and its derivative at a particular value of the independent variable. This usually applies to dynamic systems whose independent variable is time. For example, Newton’s second law of motion is an initial value problem because the initial value at t=0 of the displacement x(0) and the velocity x'(0) are required to reach a solution. The initial values lead to a particular path that is a function of time x(t).

A boundary value problem is an ODE given with boundary conditions at different points. This usually applies to static systems whose independent variable is position. For example, the Euler-Bernoulli beam deflection equation is a boundary value problem. The boundary conditions of the displacement y, the rotation y', and the third and fourth derivatives, are usually given at boundary points on the beam which will then dictate the equilibrium deflection of the beam as a function of position y(x).

Lecture Video

Leave a Reply

Your email address will not be published.