A differential equation is an equation involving a function and its derivatives. Differential equations model how systems change over time and are fundamental to physics, engineering, and natural sciences. The goal is to find the function (or functions) that satisfy the equation.
Every calculus course teaches you to compute derivatives — given a function f(x), find f′(x). A differential equation flips that task: you are given a relationship involving f′(x) (or higher derivatives), and you must recover f(x) itself. For example, if you know that a quantity grows at a rate proportional to its current size, you can write this as dy/dt = ky, and the question becomes: which function y(t) satisfies this equation? The answer — y = Ce^(kt) — is the exponential growth model that describes populations, radioactive decay, compound interest, and more.
The key conceptual shift is that *solutions are functions, not numbers*. In algebra, solving x² = 9 gives x = ±3 — specific values. Solving dy/dx = y gives y = Ce^x — an entire family of functions, one for each value of the constant C. The constant arises because solving a differential equation involves integration, and integration always introduces an arbitrary constant. To pin down a specific solution, you need an *initial condition*: a known value of the function at a specific point, like y(0) = 5. With that, C = 5 and the particular solution is y = 5e^x.
Differential equations are classified by two key attributes: *order* and *linearity*. The order is the highest derivative that appears — dy/dx = y is first-order, d²y/dx² + y = 0 is second-order. Linearity means that y and all its derivatives appear to the first power without multiplication by each other. These classifications matter because they determine which solution techniques apply. Most courses start with first-order equations and progress to second-order linear equations, which have rich solution theory.
Your prerequisite of integration by parts is already a direct solving technique: some first-order equations can be solved by separating variables and integrating both sides. Later in the course, partial derivatives and matrix operations become relevant — partial derivatives open the door to *partial* differential equations (PDEs), and matrices are used to solve systems of ODEs. But the introductory material requires only single-variable calculus. This course focuses on *ordinary* differential equations (ODEs), where the unknown function has only one independent variable.
Almost everything in physics, engineering, and the natural sciences is ultimately described by differential equations. Newton's second law (F = ma) is a second-order ODE when force depends on position. Circuit equations, population models, fluid dynamics — all express "how fast something changes" in terms of "what it currently is." Learning to read, classify, and solve differential equations is learning the language that the physical world is written in.