Logo
Section 2

Section 2

Chara Chara
January 6, 2026
1 min read
index
  1. Differential equations are equations containing derivatives, e.g.

dydx=sin(t2)+1,d2ydx2=y+t,f(x,y)x=sin(x+y)\frac{dy}{dx} = \sin(t^2)+1, \frac{d^2y}{dx^2} = y+t, \frac{\partial f(x,y)}{\partial x} = \sin(x+y)

In this class, we would only care about the first two equations, where the third one contains more than one independent variable. All of these kinds of equations are named ODE (Ordinary Differential Equations).

  1. The order of a differential equation is given by the order of the highest derivative in the equation.
  2. We say an n-th order differential equation F(t,y,y,y,,y(n))=0F(t, y, y', y'', \ldots, y^{(n)}) = 0 is linear if it can be written as

an(t)y(n)+an1(t)y(n1)++a1(t)y+a0(t)y=g(t)a_n(t) y^{(n)} + a_{n-1}(t) y^{(n-1)} + \ldots + a_1(t) y' + a_0(t) y = g(t)

Practice

ODEOrderLinear/Nonlinear

Separable ODE

Separable ODE can be written as

M(y)dy=N(t)dtM(y) dy = N(t) dt

and then take the integral for both sides. (This is only for first-order ODE, can be either linear or nonlinear.)

Integrating factors

A technique used to solve the 1st order linear ODE of the form

dydt+p(t)y=q(t)\frac{dy}{dt} + p(t) y = q(t)

(Only for first-order linear ODE)

Notation

    Lagrange        Order        Newton           Leibniz       
yy'1-sty˙\dot{y}dydx\frac{dy}{dx}
yy''2-ndy¨\ddot{y}d2ydx2\frac{d^2y}{dx^2}
yy'''3-rdy...\dddot{y}d3ydx3\frac{d^3y}{dx^3}
y(4)y^{(4)}4-th
y(n)y^{(n)}n-thdnydxn\frac{d^ny}{dx^n}