The order of an ordinary differential equation (ODE) is the order of the highest derivative present in the equation.
The degree of an ODE is the highest power (exponent) of the highest order derivative, after the equation has been made free from radicals and fractional powers of the derivatives.
A first-order ODE has the general form dy/dx = f(x, y) or M(x,y)dx + N(x,y)dy = 0.
This is the simplest form. The equation can be rearranged so that all terms involving 'y' are on one side (with 'dy') and all terms involving 'x' are on the other side (with 'dx').
∫ f(y) dy = ∫ g(x) dx + C(where C is the constant of integration)
An equation of the form M(x,y)dx + N(x,y)dy = 0 is called "exact" if it is the total differential (du) of some function u(x,y).
∂M/∂y = ∂N/∂x(The partial derivative of M with respect to y equals the partial derivative of N with respect to x).
∫ M dx (treating y as constant) + ∫ (terms in N not containing x) dy = C
If an equation M(x,y)dx + N(x,y)dy = 0 is not exact (i.e., ∂M/∂y ≠ ∂N/∂x), we can sometimes find a function μ(x,y), called an Integrating Factor (I.F.), to multiply the entire equation by. The new equation `(μM)dx + (μN)dy = 0` will then be exact.
Finding the I.F. can be hard. Two common cases are:
I.F. = e∫f(x)dx
I.F. = e∫g(y)dy
A first-order linear ODE has a standard form:
dy/dx + P(x)y = Q(x)
where P(x) and Q(x) are functions of x (or constants).
I.F. = e∫P(x)dx
y * (I.F.) = ∫ [ Q(x) * (I.F.) ] dx + C
We will focus on linear second-order ODEs with constant coefficients.
The general solution (y) is the sum of two parts: the Complementary Function (yc) and the Particular Integral (yp).
y = yc + yp
The homogeneous form is when the right-hand side is zero. The solution to this part is the Complementary Function (yc).
We assume a trial solution of the form y = emx. Substituting this into the ODE gives:
a(m²emx) + b(memx) + c(emx) = 0
emx (am² + bm + c) = 0
Since emx cannot be zero, we must solve the quadratic equation:
am² + bm + c = 0
This is the Auxiliary Equation (A.E.). Let the roots be m₁ and m₂.
There are three possible cases for the roots of the A.E.:
| Case | Roots (m₁, m₂) | Complementary Function (yc) |
|---|---|---|
| Case 1: Real and Distinct Roots | m₁ and m₂ are real, m₁ ≠ m₂ | yc = C₁em₁x + C₂em₂x |
| Case 2: Real and Equal Roots | m₁ = m₂ = m (real) | yc = (C₁ + C₂x)emx |
| Case 3: Complex Roots | m = α ± iβ (complex conjugate pair) | yc = eαx (C₁cos(βx) + C₂sin(βx)) |
where C₁ and C₂ are arbitrary constants, determined by initial/boundary conditions.
The non-homogeneous form is a y'' + b y' + c y = f(x), where f(x) is not zero.
The General Solution is y = yc + yp.
The syllabus mentions the "Method for finding particular integrals," which typically refers to the Method of Undetermined Coefficients. This method involves making an educated guess for the form of yp based on the form of f(x).
| If f(x) is... | Trial Solution for yp |
|---|---|
| A constant, k | A constant, A |
| A polynomial, e.g., ax² + bx + c | A polynomial of the same degree, e.g., Ax² + Bx + C |
| An exponential, keax | Aeax |
| A sine or cosine, e.g., k sin(ax) or k cos(ax) | A sin(ax) + B cos(ax) (must include both) |
| A product, e.g., eax sin(bx) | eax (A sin(bx) + B cos(bx)) |