Differential equations are mathematical equations that relate a function to its derivatives, forming the backbone of mathematical modeling in physics, engineering, biology, and economics. They describe how quantities change continuously in response to various factors—whether modeling population growth, heat distribution, fluid dynamics, or electrical circuits. The key distinction lies between ordinary differential equations (ODEs), involving derivatives with respect to a single variable, and partial differential equations (PDEs), involving multiple variables. Understanding solution techniques—from separation of variables to numerical methods—enables practitioners to predict system behavior, analyze stability, and solve real-world problems that would be intractable through algebraic methods alone.
What This Cheat Sheet Covers
This topic spans 17 focused tables and 152 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
A jump-to index of every table row in this cheat sheet.
An interactive map of every table and concept in this topic.
Table 1: Classification and Types
Before you can solve a differential equation, you have to know what kind it is—and that classification dictates every technique you'll reach for next. Order, linearity, whether it's ordinary or partial, homogeneous or driven by an external force: these labels are the diagnostic vocabulary that turns an intimidating equation into a recognizable type with known methods of attack.
| Type | Example | Description |
|---|---|---|
$\frac{dy}{dx} + 3y = e^x$ | • Contains derivatives with respect to only one independent variable • contrasts with PDEs which have multiple variables. | |
$\frac{\partial^2 u}{\partial t^2} = c^2 \frac{\partial^2 u}{\partial x^2}$ | • Involves partial derivatives with respect to two or more independent variables • models phenomena in multiple dimensions. | |
$y' = 2x + y$ | • Contains only the first derivative as the highest-order derivative • requires one initial condition for unique solution. | |
$y'' - 5y' + 6y = 0$ | • Involves the second derivative as the highest-order derivative • requires two initial conditions for unique solution. | |
$y''' + y'' - y' + y = 0$ | • Contains derivatives of order three or higher • order equals the highest derivative present. | |
$y'' + p(x)y' + q(x)y = g(x)$ | • The dependent variable and its derivatives appear to the first power only • no products or nonlinear functions of $y$ or its derivatives. |