A separable differential equation is a first-order ODE in which the variables can be algebraically rearranged so that all terms involving the dependent variable appear on one side and all terms involving the independent variable appear on the other side, allowing direct integration of each side independently. The standard form is dy/dx = g(x)·h(y), which rearranges to (1/h(y))dy = g(x)dx. Separable equations model exponential growth, radioactive decay, Newton's law of cooling, and many other phenomena.
dy/dx = g(x)·h(y) → ∫ dy/h(y) = ∫ g(x) dx + C
LaTeX: \frac{dy}{dx} = g(x)\,h(y) \implies \int \frac{dy}{h(y)} = \int g(x)\,dx + C
| Symbol | Meaning | Unit |
|---|---|---|
| g(x) | Function of independent variable x only | dimensionless |
| h(y) | Function of dependent variable y only | dimensionless |
| C | Constant of integration (determined by initial condition) | dimensionless |
Problem
Solve the separable ODE: dy/dx = 3x²y, with initial condition y(0) = 2.
Solution
Step 1: Separate variables: (1/y) dy = 3x² dx. Step 2: Integrate both sides: ∫(1/y) dy = ∫3x² dx → ln|y| = x³ + C. Step 3: Exponentiate: |y| = e^(x³ + C) = Ae^(x³) where A = e^C. Step 4: Apply initial condition y(0) = 2: 2 = Ae⁰ = A, so A = 2. Step 5: Final solution: y = 2e^(x³).
Answer
y = 2e^(x³)
| Equation | Separated Form | General Solution | Application |
|---|---|---|---|
| dy/dx = ky | dy/y = k dx | y = Ce^(kx) | Exponential growth/decay |
| dy/dx = −ky | dy/y = −k dx | y = Ce^(−kx) | Radioactive decay |
| dy/dx = g(x) | dy = g(x) dx | y = ∫g(x)dx + C | Direct integration |
| dy/dx = y² | dy/y² = dx | y = −1/(x + C) | Blow-up solutions |
| dy/dx = √(1−y²) | dy/√(1−y²) = dx | y = sin(x + C) | Trigonometric solutions |
Wikimedia Commons, CC BY-SA
A differential equation is an equation that relates a function to one or more of its derivatives, describing how a quantity changes with respect to one or more independent variables. Ordinary differential equations (ODEs) involve functions of a single variable, while partial differential equations (PDEs) involve functions of multiple variables. Differential equations are fundamental to modeling physical, biological, and engineering systems — from Newton's laws of motion to population dynamics and heat conduction.
A linear differential equation is an ODE in which the unknown function and all its derivatives appear linearly (to the first power only, with no products between them), with coefficients that may be functions of the independent variable. The standard first-order linear form is dy/dx + P(x)y = Q(x), solved using an integrating factor. Linear differential equations obey the superposition principle, making them tractable analytically and foundational in engineering, electrical circuit analysis, and quantum mechanics.
Euler's method is a first-order numerical procedure for approximating solutions to ordinary differential equations given an initial value. Starting from a known point, the method steps forward along the tangent line to the solution curve in increments of step size h, using the ODE's derivative expression to determine the direction. Although simple to implement, Euler's method accumulates error with larger step sizes and has been superseded by more accurate methods (such as Runge–Kutta), but it remains the foundational teaching example for numerical ODE solvers.
From Latin "separare" (to separate, put apart). The technique of separation of variables was used by Johann Bernoulli in the late 17th century and formalized as a standard method for solving first-order ODEs in the 18th century.