Skip to content
Sahithyan's S1
Sahithyan's S1 — Mathematics

Higher Order Ordinary Differential Equations

Linear Differential Equations

dnydxn+p1(x)dn1ydxn1+  ...  +pn(x)y=q(x)\frac{\text{d}^ny}{\text{d}x^n}+ p_1(x)\frac{\text{d}^{n-1}y}{\text{d}x^{n-1}}+ \;...\; +p_n(x)y =q(x)

Based on q(x)q(x), the above equation is categorized into 22 types:

  • Homogenous if q(x)=0q(x)=0
  • Non-homogenous if q(x)0q(x)\not=0

Solution

The general solution of the equation is y=yp+ycy=y_p+y_c.

Here

  • ypy_p - particular solution
  • ycy_c - complementary solution

Particular solution

Doesn’t exist for homogenous equations. For non-homogenous equations check steps section of 2nd order ODE.

Complementary solution

Solutions assuming LHS=0LHS=0 (as in a homogenous equation).

yc=i=1nciyiy_c = \sum_{i=1}^{n}{c_i\,y_i}

Here

  • cic_i - constant coefficients
  • yiy_i - a linearly-independent solution

Linearly dependent & independent

nn-th order linear differential equations have n linearly independent solutions.

Two solutions of a differential equation u,vu,v are said to be linearly dependent, if there exists constants c1,c2  (0)c_1,c_2\;(\not=0) such that c1u(x)+c2v(x)=0c_1u(x)+c_2v(x)=0.

Otherwise, the solutions are said to be linearly independent, which means:

i=1nciyi=0    ci=0\sum_{i=1}^{n}{c_iy_i}=0\implies \forall{c_i}=0

Linear differential operators with constant coefficients

Differential operator

Defined as:

Di=didxi  ;  nZ+\text{D}^i=\frac{\text{d}^i}{\text{d}x^i}\;;\;n\in\mathbb{Z}^+

The above equation can be written using the differential operator:

Dny+a1Dn1y+  ...  +any=q(x)\text{D}^ny+ a_1\text{D}^{n-1}y+ \;...\; +a_ny =q(x)

Here if yy is factored out (how tf?):

(Dn+a1Dn1+  ...  +an)y=P(D)y=q(x)(\text{D}^n+ a_1\text{D}^{n-1}+ \;...\; +a_n )y = P(D)y = q(x)

where P(D)=(Dn+a1Dn1+  ...  +an)P(D)=(\text{D}^n+a_1\text{D}^{n-1}+\;...\;+a_n).

P(D)P(D) is called a polynomial differential operator with constant coefficients.