Introduction and Classification
1.1 Basic Definitions
A differential equation (DE) is an equation involving an unknown function and its derivatives. An ordinary differential equation (ODE) involves a function of one variable and its ordinary Derivatives. A partial differential equation (PDE) involves a function of several variables and Its partial derivatives.
1.2 Classification of ODEs
An ODE is:
- Ordinary vs. partial: depends on whether partial derivatives appear.
- Order: the highest derivative that appears.
- Linear vs. nonlinear: linear if the unknown function and its derivatives appear linearly.
- Homogeneous vs. nonhomogeneous: for linear ODEs, homogeneous if the forcing term is zero.
1.3 Initial and Boundary Value Problems
An initial value problem (IVP) specifies the value of the function (and possibly its Derivatives) at a single point. A boundary value problem (BVP) specifies conditions at two or More points.
1.4 Examples from Physics and Biology
Differential equations arise throughout the natural sciences. A few canonical examples:
Newton”s law of cooling. The temperature of a body in a medium at temperature satisfies A first-order linear ODE.
Harmonic oscillator. A mass on a spring with damping obeys A second-order linear ODE.
Logistic population growth. A first-order nonlinear (Bernoulli) ODE.
Lotka-Volterra predator-prey model. , A coupled nonlinear system.
RC circuit. The charge on a capacitor satisfies a first-order linear ODE.
Heat equation. The temperature in a rod satisfies A second-order linear PDE.
Wave equation. The displacement of a string satisfies A second-order linear PDE.
Laplace’s equation. The steady-state temperature satisfies A second-order linear PDE.
1.5 Classification Tree
Differential Equations├── ODE (one independent variable)│ ├── By order│ │ ├── First-order: y' = f(x, y)│ │ ├── Second-order: y'' = f(x, y, y')│ │ └── n-th order: y^(n) = f(x, y, ..., y^(n-1))│ ├── By linearity│ │ ├── Linear: a_n(x)y^(n) + ... + a_0(x)y = g(x)│ │ │ ├── Homogeneous (g = 0)│ │ │ └── Nonhomogeneous (g ≠ 0)│ │ └── Nonlinear (y or derivatives appear nonlinearly)│ └── By coefficients│ ├── Constant coefficient│ └── Variable coefficient└── PDE (multiple independent variables) ├── Elliptic: B² - 4AC < 0 (e.g., Laplace) ├── Parabolic: B² - 4AC = 0 (e.g., Heat) └── Hyperbolic: B² - 4AC > 0 (e.g., Wave)1.6 Worked Example: Classifying ODEs
Problem. Classify each equation by order, linearity, and homogeneity (if linear).
(a)
(b)
(c)
(d)
Solution
(a) Second-order, linear, nonhomogeneous (forcing term ).
(b) First-order, nonlinear (the term is nonlinear in ).
(c) Second-order, linear, homogeneous. This is Bessel’s equation of order 1.
(d) Second-order PDE, linear, homogeneous. This is Laplace’s equation; , , So (elliptic).