What Are Differential Equations? Types and Applications

A clear introduction to differential equations — what they are, the major types (ODE, PDE, linear, nonlinear), solution methods, and real-world applications.

The InfoNexus Editorial TeamMay 4, 20264 min read

What Are Differential Equations?

A differential equation is a mathematical equation that relates a function to its derivatives — that is, to the rates at which it changes. Differential equations are the fundamental language for describing processes that evolve over time or vary across space, making them indispensable in physics, engineering, biology, economics, and virtually every quantitative science. When a physicist writes Newton's second law as F = ma, or when an epidemiologist models the spread of a disease, they are formulating and solving differential equations.

The central idea is straightforward: if you know the rate of change of a quantity (its derivative), a differential equation lets you determine the quantity itself. For example, if the rate at which a population grows is proportional to its current size, the differential equation dP/dt = kP describes exponential growth — and its solution P(t) = P₀ekt predicts the population at any future time.

Ordinary vs. Partial Differential Equations

The two broadest categories of differential equations depend on how many independent variables are involved.

PropertyOrdinary Differential Equation (ODE)Partial Differential Equation (PDE)
Independent variablesOne (usually time t or position x)Two or more (e.g., time t and spatial coordinates x, y, z)
DerivativesOrdinary derivatives (d/dt)Partial derivatives (∂/∂t, ∂/∂x)
Typical exampledy/dt = -ky (radioactive decay)∂²u/∂x² = (1/c²)∂²u/∂t² (wave equation)
ComplexityGenerally simpler to solveOften requires numerical methods or advanced techniques
ApplicationsPopulation models, circuits, mechanical vibrationsHeat flow, fluid dynamics, quantum mechanics, electromagnetism

Classification of Differential Equations

Beyond the ODE/PDE distinction, differential equations are classified by several additional properties:

  • Order: The highest derivative present. A first-order equation involves dy/dx; a second-order equation involves d²y/dx². Newton's second law (F = ma = m·d²x/dt²) is a second-order ODE.
  • Linearity: A linear differential equation has no products or powers of the unknown function and its derivatives. The equation dy/dt + 3y = sin(t) is linear; dy/dt = y² is nonlinear.
  • Homogeneity: A homogeneous equation has zero on the right-hand side (e.g., dy/dt + 3y = 0). If a forcing term is present (dy/dt + 3y = sin(t)), the equation is non-homogeneous.
  • Coefficients: Constant-coefficient equations (d²y/dt² + 5dy/dt + 6y = 0) are generally easier to solve than variable-coefficient equations where the coefficients depend on the independent variable.
  • Autonomy: An autonomous equation does not explicitly depend on the independent variable (dy/dt = f(y) only). Many physical systems are autonomous.

Solution Methods

Analytical (Exact) Methods

For certain classes of differential equations, exact closed-form solutions exist:

  • Separation of variables: Works when the equation can be written as g(y)dy = f(x)dx. Both sides are integrated independently. Example: dy/dx = xy can be separated as dy/y = x dx, yielding y = Cex²/2.
  • Integrating factors: For first-order linear ODEs (dy/dx + P(x)y = Q(x)), multiplying by e∫P(x)dx converts the left side into an exact derivative.
  • Characteristic equation: For constant-coefficient linear ODEs, substituting y = erx converts the differential equation into a polynomial equation in r. The roots determine the solution form.
  • Laplace transforms: Converts a differential equation into an algebraic equation in a transform variable, which is often easier to solve. The solution is then converted back using inverse transforms.
  • Power series methods: Express the solution as an infinite series; useful for variable-coefficient equations such as the Bessel and Legendre equations that arise in physics.

Numerical Methods

Most real-world differential equations cannot be solved analytically. Numerical methods approximate solutions by stepping through the equation computationally.

MethodOrder of AccuracyKey FeatureUse Case
Euler's methodFirst orderSimplest method; easy to implementTeaching; rough approximations
Runge-Kutta (RK4)Fourth orderExcellent balance of accuracy and efficiencyStandard workhorse for ODEs
Adams-BashforthMultistep (varies)Uses previous steps to increase efficiencyLong-time-horizon simulations
Finite differenceVariesDiscretizes spatial and temporal domains on a gridPDEs: heat equation, wave equation
Finite elementVariesDivides domain into small elements; handles complex geometryStructural mechanics, fluid dynamics

Famous Differential Equations and Their Applications

Many of the most important equations in science and engineering are differential equations. Several have shaped entire fields of study.

Newton's Second Law

F = ma, or equivalently m·d²x/dt² = F(x, dx/dt, t), governs the motion of every mechanical system — from planets in orbit to the suspension of a car. The entire field of classical mechanics is built on solving this second-order ODE for different force functions F.

The Heat Equation

∂u/∂t = α·∂²u/∂x², where u is temperature and α is thermal diffusivity, describes how heat diffuses through a material. Developed by Joseph Fourier in 1822, it launched the theory of Fourier series and remains central to engineering thermodynamics.

The Wave Equation

∂²u/∂t² = c²·∂²u/∂x² describes the propagation of waves — sound waves, light waves, water waves, and vibrations in strings and membranes. Its solutions reveal fundamental properties of wave behavior including superposition, interference, and standing waves.

Maxwell's Equations

James Clerk Maxwell unified electricity and magnetism into four coupled PDEs in 1865. These equations predicted electromagnetic waves traveling at the speed of light — revealing that light itself is an electromagnetic phenomenon. Every modern technology involving radio, television, Wi-Fi, radar, and fiber optics depends on solutions to Maxwell's equations.

The Navier-Stokes Equations

These PDEs describe the motion of viscous fluids and are used in weather prediction, aircraft design, ocean modeling, and blood flow simulation. Despite their widespread use, proving whether smooth solutions always exist in three dimensions remains one of the seven Millennium Prize Problems in mathematics, carrying a $1 million prize.

Applications Across Disciplines

  • Physics: Quantum mechanics (Schrodinger equation), general relativity (Einstein field equations), thermodynamics (heat equation)
  • Engineering: Circuit analysis (RLC circuits), control systems (transfer functions), structural analysis (beam deflection equations)
  • Biology: Population dynamics (Lotka-Volterra predator-prey model), epidemiology (SIR model for disease spread), neuroscience (Hodgkin-Huxley model of nerve impulses)
  • Economics: Solow growth model (capital accumulation), option pricing (Black-Scholes equation), dynamic optimization (Euler-Lagrange equations)
  • Chemistry: Reaction kinetics (rate equations), diffusion of chemicals (reaction-diffusion equations)

Differential equations form the mathematical backbone of modern science and engineering. Whether describing the orbit of a satellite, the diffusion of a drug through the body, or the vibration of a bridge under wind loads, they provide the precise language needed to model, predict, and control dynamic systems. Their study — begun by Newton and Leibniz in the 17th century — remains one of the most active and essential areas of mathematics today.

differential equationsmathematicscalculus

Related Articles